ska-referee-test/ref-test/app/test.py

10 lines
141 B
Python
Raw Normal View History

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