mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-12 13:01:51 +00:00
7 lines
132 B
Python
7 lines
132 B
Python
|
from proxstar import app
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app.run(host=app.config['IP'], port=app.config['PORT'])
|
||
|
|
||
|
application = app
|