8 lines
224 B
Python
8 lines
224 B
Python
# -*- coding: utf-8 -*-
|
|
from flask import Blueprint
|
|
from common.libs.Helper import ops_render
|
|
route_index = Blueprint( 'index_page',__name__ )
|
|
|
|
@route_index.route("/")
|
|
def index():
|
|
return ops_render( "index/index.html" ) |