Starting work on frontend.

This commit is contained in:
Yaro Kasear 2025-09-09 09:53:05 -05:00
parent 679433525c
commit 7e915423a3
4 changed files with 60 additions and 5 deletions

View file

10
inventory/routes/index.py Normal file
View file

@ -0,0 +1,10 @@
from flask import Blueprint, request, jsonify, render_template
bp_index = Blueprint("index", __name__)
def init_index_routes(app):
@bp_index.get("/")
def index():
return render_template("base.html")
app.register_blueprint(bp_index)