Flask - Ecosystem and Patterns
What will happen if you run
flask hello given this code?from flask import Flask
app = Flask(__name__)
@app.cli.command()
def hello():
print('Hi there!')