mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 18:11:23 +01:00
6 lines
132 B
Python
6 lines
132 B
Python
|
#!/usr/bin/env python2
|
||
|
from titanembeds.app import app
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app.run(host="0.0.0.0",port=3000,debug=True)
|