6 lines
85 B
Python
6 lines
85 B
Python
from . import main
|
|
|
|
@main.route('/')
|
|
def index():
|
|
return '<h1>Hello world</h1>'
|
|
|