Spaces:
Running
Running
File size: 143 Bytes
547b48b |
1 2 3 4 5 6 7 |
from flask import Flask
def create_app():
app = Flask(__name__)
from .routes import api
app.register_blueprint(api)
return app |