diff options
Diffstat (limited to 'src/web_api.py')
-rwxr-xr-x | src/web_api.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/web_api.py b/src/web_api.py new file mode 100755 index 0000000..beaab57 --- /dev/null +++ b/src/web_api.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 +from home.web_api import get_app +from typing import Optional +from flask import Flask + +app: Optional[Flask] = None + + +if __name__ in ('__main__', 'app'): + app = get_app() + +if __name__ == '__main__': + app.run(host='0.0.0.0') |