mirror of
https://github.com/ivanch/tcc.git
synced 2025-07-09 09:39:19 +00:00
13 lines
267 B
Python
13 lines
267 B
Python
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()
|