Last active
May 13, 2022 07:28
-
-
Save twyle/0add54b4e7433d1566ac5a24d0efe68e 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 dotenv import load_dotenv | |
from flask import Flask | |
load_dotenv() | |
app = Flask(__name__) | |
from API import routes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment