Titan/discordbot/run.py
2018-07-16 17:34:08 -04:00

12 lines
168 B
Python

from titanembeds import Titan
import gc
def main():
print("Starting bot...")
te = Titan()
te.run()
gc.collect()
if __name__ == '__main__':
main()