10 lines
98 B
Python
10 lines
98 B
Python
"""AutoSco / views
|
|
"""
|
|
|
|
from app.views import bp
|
|
|
|
|
|
@bp.route("/")
|
|
def index():
|
|
return "hello"
|