10 lines
141 B
Python
10 lines
141 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
foo = Blueprint(
|
||
|
name='foo',
|
||
|
import_name=__name__
|
||
|
)
|
||
|
|
||
|
@foo.route('/')
|
||
|
def testing():
|
||
|
return 'Testing'
|