Skip to content

Instantly share code, notes, and snippets.

@rnelsonchem
Created December 3, 2023 17:53
Show Gist options
  • Save rnelsonchem/d12cd69b3dc82794326e802032834f26 to your computer and use it in GitHub Desktop.
Save rnelsonchem/d12cd69b3dc82794326e802032834f26 to your computer and use it in GitHub Desktop.
The test page file.
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