mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 18:11:23 +01:00
12 lines
164 B
Python
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()
|