You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
228 B

from flask import (
Flask, Blueprint
)
sbp = Blueprint("sub", __name__, url_prefix="/sub")
@sbp.route("/")
def index():
return "Index of sub"
@sbp.route("/test")
def test():
return "We are the tester, my friend!"