Initial for Waybill blueprint

This commit is contained in:
2024-11-05 15:50:54 +03:00
parent b9a07fe533
commit d5f2322559
3 changed files with 21 additions and 0 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
import os, json
@@ -13,6 +14,7 @@ app.config.update(
app.register_blueprint(requests_bp, url_prefix='/requests')
app.register_blueprint(auth_bp, url_prefix='/auth')
app.register_blueprint(waybill_bp, url_prefix='/waybill')
@app.route('/')
def index():