This repository has been archived on 2025-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
wot_stats_server/app.py
2017-08-27 01:29:45 +03:00

5 lines
124 B
Python

from wotstats.init import init_app
if __name__ == '__main__':
app = init_app()
app.run(host='0.0.0.0', debug=True)