mirror of
https://github.com/sunrin-ana/2025-SSF-dotory-manage.git
synced 2026-03-09 18:10:02 +00:00
9 lines
222 B
Python
9 lines
222 B
Python
from flask_restx import Api
|
|
|
|
from .dotori import dotori_ns
|
|
from .product import product_ns
|
|
|
|
|
|
def add_namespaces(api):
|
|
api.add_namespace(dotori_ns, path="/api/dotory")
|
|
api.add_namespace(product_ns, path="/api/buy")
|