Files

10 lines
235 B
Python

# -*- encoding: utf-8 -*-
# @author : vincent.benoit@benserv.fr
# @brief : U10Manager Flask RESTful API
from src import app
print("Launch Flask RESTful API Backend ...")
application = app.create_app()
application.run(host="0.0.0.0")