Titan/discordbot/run.py

12 lines
164 B
Python
Raw Permalink Normal View History

from titanembeds import Titan
import gc
2017-05-04 05:22:27 +02:00
def main():
print("Starting...")
te = Titan()
te.run()
gc.collect()
if __name__ == '__main__':
main()