7 lines
164 B
Python
7 lines
164 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
from myapp.main import main
|
|
|
|
@main.route('/')
|
|
def index():
|
|
return '<h>Hello world ,I am main</h>' |