|
from flask import Flask
|
|
from controllers.status import status_blueprint
|
|
from controllers.image import image_blueprint
|
|
|
|
app = Flask(__name__)
|
|
|
|
#
|
|
app.register_blueprint(status_blueprint)
|
|
app.register_blueprint(image_blueprint)
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|