9 lines
193 B
Python
9 lines
193 B
Python
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
from webapp import create_app
|
|
|
|
if __name__ == "__main__":
|
|
app = create_app()
|
|
app.run(host="127.0.0.1", port=5000, debug=True)
|
|
|