const express = require("express"); const http = require("http"); const app = express(); app.get("/", (request, response) => { //console.log(Date.now() + " BOT Aktif."); //response.sendStatus(200); }); app.listen(process.env.PORT); setInterval(() => { http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me`); }, 1000 * 60 * 3); module.exports = { name: "yardım", description: "yardım", execute(client, message) { message.channel.send(' ```Komut Menüsü``` ') message.channel.send('!oynat \n Şarkı Çalıştırır \n !yardım \n Bu Komudu Çalıştır.') } }