Created
March 30, 2020 16:40
-
-
Save danioscx/4f407f86ee5f1b0b61b07a64adce67ca 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
from flask import Blueprint | |
view = Blueprint("view", __name__) | |
@view.route("/") | |
def hello(): | |
return "hello" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment