mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
8 lines
217 B
Python
8 lines
217 B
Python
#!/usr/bin/env python2
|
|
from titanembeds.app import app
|
|
|
|
if __name__ == "__main__":
|
|
import os
|
|
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1' # Testing oauthlib
|
|
app.run(host="0.0.0.0",port=3000,debug=True)
|