NPC shop implimented
This commit is contained in:
@@ -179,7 +179,11 @@ def register_blueprints(app: Flask) -> None:
|
||||
app.register_blueprint(inventory_bp)
|
||||
logger.info("Inventory API blueprint registered")
|
||||
|
||||
# Import and register Shop API blueprint
|
||||
from app.api.shop import shop_bp
|
||||
app.register_blueprint(shop_bp)
|
||||
logger.info("Shop API blueprint registered")
|
||||
|
||||
# TODO: Register additional blueprints as they are created
|
||||
# from app.api import marketplace, shop
|
||||
# from app.api import marketplace
|
||||
# app.register_blueprint(marketplace.bp, url_prefix='/api/v1/marketplace')
|
||||
# app.register_blueprint(shop.bp, url_prefix='/api/v1/shop')
|
||||
|
||||
Reference in New Issue
Block a user