Mii_Kislitsa_Egor_Pibd_33/run.py

17 lines
221 B
Python
Raw Normal View History

2024-09-28 10:36:43 +04:00
from backend import create_app
app = create_app()
def __main():
app.run(
host="127.0.0.1",
port=8080,
debug=True,
use_reloader=False,
)
if __name__ == "__main__":
__main()