mirror of https://github.com/ivanch/tcc.git
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()
|