mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-26 23:17:03 +01:00
12 lines
168 B
Python
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()
|