Title | description |
---|---|
Bot ToS and Privacy Policy |
The Terms of Service and Privacy Policy of the Discord Bot. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Discord = require("discord.js") | |
const client = new Discord.Client({ ws: { properties: { $browser: "Discord iOS" }} }) | |
client.on("ready", () => { | |
client.user.setActivity(`hentaiz`, { type: 3, browser: "DISCORD IOS" }) | |
console.log("Ready") | |
}) | |
client.login('token') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require("express"); | |
const app = express(); | |
const port = process.env.PORT || 5000 | |
app.get('/', (req,res) => { | |
res.send('Hello world') | |
}) | |
app.get('/image', (req,res) => { | |
const result = {}; | |
result.code = 200; |