16 lines
258 B
Python
16 lines
258 B
Python
from flask import Blueprint
|
|
from app.models.width_model import Width
|
|
|
|
engi_bp = Blueprint("engineering",__name__, url_prefix="/engi")
|
|
|
|
|
|
@engi_bp.route("/add")
|
|
def add_width_md():
|
|
|
|
return True
|
|
|
|
|
|
@engi_bp.route("/list")
|
|
def display_list():
|
|
|
|
return True |