Created
May 19, 2022 04:54
-
-
Save twyle/904e0d37e93341d92eadf72ea5408fbb 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 -*- | |
"""Commands used to start and test the application.""" | |
from flask.cli import FlaskGroup | |
from API import app | |
cli = FlaskGroup(app) | |
if __name__ == '__main__': | |
cli() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment