2023-08-31 18:15:50 +00:00
|
|
|
from flask import Flask
|
|
|
|
from controllers.status import status_blueprint
|
2023-10-27 01:33:28 +00:00
|
|
|
from controllers.simulation import simulation_blueprint
|
2023-08-31 18:15:50 +00:00
|
|
|
from controllers.image import image_blueprint
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
|
|
#
|
|
|
|
app.register_blueprint(status_blueprint)
|
2023-10-27 01:33:28 +00:00
|
|
|
app.register_blueprint(simulation_blueprint)
|
2023-09-24 13:56:01 +00:00
|
|
|
app.register_blueprint(image_blueprint)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app.run()
|