Skip to content

Instantly share code, notes, and snippets.

View ajkachnic's full-sized avatar
💻
Programming

andrew ajkachnic

💻
Programming
View GitHub Profile
import discord
import os
from keep_up import keep_up
from discord.ext import commands
client = commands.Bot(command_prefix='.')
keep_up()
token = os.environ.get("DISCORD_BOT_TOKEN")
client.run(token)