Discordbot database setup inital/partial

This commit is contained in:
Jeremy Zhang
2017-05-03 22:16:49 -07:00
parent 1e1a3ab43e
commit 7762862623
5 changed files with 92 additions and 25 deletions

View File

@ -1,4 +1,11 @@
from titanembeds.bot import client
from config import config
from titanembeds import Titan
import gc
client.run(config["bot-token"])
def main():
print("Starting...")
te = Titan()
te.run()
gc.collect()
if __name__ == '__main__':
main()