1
0
mirror of https://github.com/TitanEmbeds/Titan.git synced 2025-01-16 08:58:28 +01:00
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()