Titan/discordbot/run.py
2017-05-03 22:16:49 -07:00

12 lines
164 B
Python

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