Created
December 3, 2023 17:53
-
-
Save rnelsonchem/d12cd69b3dc82794326e802032834f26 to your computer and use it in GitHub Desktop.
The test page file.
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 | |
from . import db | |
from .models import TestTable | |
bp = Blueprint("test", __name__, url_prefix='/test') | |
@bp.route("/new", methods=("GET", "POST")) | |
def print_test(): | |
return "Hello world!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment