Skip to content

Instantly share code, notes, and snippets.

@twyle
Last active May 13, 2022 07:28
Show Gist options
  • Save twyle/0add54b4e7433d1566ac5a24d0efe68e to your computer and use it in GitHub Desktop.
Save twyle/0add54b4e7433d1566ac5a24d0efe68e to your computer and use it in GitHub Desktop.
# -*- 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