Skip to content

Instantly share code, notes, and snippets.

@twyle
Created June 1, 2022 06:02
Show Gist options
  • Save twyle/5daedf797bffa59f2cf55c1643cf1bdb to your computer and use it in GitHub Desktop.
Save twyle/5daedf797bffa59f2cf55c1643cf1bdb to your computer and use it in GitHub Desktop.
# -*- 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