Created
June 1, 2022 06:02
-
-
Save twyle/5daedf797bffa59f2cf55c1643cf1bdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
"""This module contains initialization code for the api package.""" | |
from flask import Flask | |
from .blueprints.default.views import default | |
app = Flask(__name__) | |
app.register_blueprint(default) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment