Flask/project_name/ext/restapi/__init__.py

14 lines
362 B
Python
Raw Permalink Normal View History

2024-11-10 07:27:36 -08:00
from flask import Blueprint
from flask_restful import Api
from .resources import ProductItemResource, ProductResource
bp = Blueprint("restapi", __name__, url_prefix="/api/v1")
api = Api(bp)
def init_app(app):
api.add_resource(ProductResource, "/product/")
api.add_resource(ProductItemResource, "/product/<product_id>")
app.register_blueprint(bp)