ip user info

This commit is contained in:
Mateusz Gruszczyński
2026-04-15 08:47:45 +02:00
parent b3db12ba41
commit c0ac69fce7
15 changed files with 624 additions and 759 deletions

View File

@@ -0,0 +1,18 @@
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')