Created
March 5, 2019 15:35
-
-
Save jugmac00/ac61cf5593ee88d4c6a650a5e5dae070 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
import click | |
from app import create_app | |
from config import Config | |
app = create_app(Config) | |
@app.cli.command() | |
def initialize_database(): | |
click.echo("hello world") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment