mirror of
https://github.com/ivanch/tcc.git
synced 2025-10-17 03:17:36 +00:00
15 lines
368 B
Python
15 lines
368 B
Python
from flask import Flask
|
|
from controllers.status import status_blueprint
|
|
from controllers.simulation import simulation_blueprint
|
|
from controllers.image import image_blueprint
|
|
|
|
app = Flask(__name__)
|
|
|
|
#
|
|
app.register_blueprint(status_blueprint)
|
|
app.register_blueprint(simulation_blueprint)
|
|
app.register_blueprint(image_blueprint)
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|