19 lines
302 B
Python
19 lines
302 B
Python
from flask import Blueprint, render_template
|
|
|
|
web_bp = Blueprint('web', __name__)
|
|
|
|
|
|
@web_bp.route('/')
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
|
|
@web_bp.route('/favicon.ico')
|
|
def favicon():
|
|
return '', 204
|
|
|
|
|
|
@web_bp.route('/api')
|
|
def api_docs():
|
|
return render_template('api.html')
|