Skip to content

Instantly share code, notes, and snippets.

@danioscx
Created March 30, 2020 16:40
Show Gist options
  • Save danioscx/4f407f86ee5f1b0b61b07a64adce67ca to your computer and use it in GitHub Desktop.
Save danioscx/4f407f86ee5f1b0b61b07a64adce67ca to your computer and use it in GitHub Desktop.
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