Files
ska-referee-test/ref-test/app/test.py
viveksantayana 436c8e0e2d Started from scratch and failed
Issue with register_blueprint
2022-06-11 02:39:47 +01:00

10 lines
141 B
Python

from flask import Blueprint
foo = Blueprint(
name='foo',
import_name=__name__
)
@foo.route('/')
def testing():
return 'Testing'