Merge branch 'Debug'

This commit is contained in:
2024-11-05 22:50:29 +03:00
13 changed files with 43 additions and 49 deletions

View File

@@ -1,5 +1,6 @@
from flask import Flask, render_template, session
from Requests import requests_bp
from Waybill import waybill_bp
from Auth import auth_bp
from Report import report_bp
import os, json
@@ -15,6 +16,7 @@ app.config.update(
app.register_blueprint(requests_bp, url_prefix='/requests')
app.register_blueprint(auth_bp, url_prefix='/auth')
app.register_blueprint(report_bp, url_prefix='/report')
app.register_blueprint(waybill_bp, url_prefix='/waybill')
@app.route('/')
def index():