feat(rulebook): REST routes — rulebook + topic endpoints

This commit is contained in:
2026-05-27 21:34:25 -04:00
parent 45fe198d54
commit 0219c673c1
3 changed files with 172 additions and 0 deletions
+2
View File
@@ -25,6 +25,7 @@ from fabledassistant.routes.events import events_bp
from fabledassistant.routes.search import search_bp
from fabledassistant.routes.profile import profile_bp
from fabledassistant.routes.knowledge import knowledge_bp
from fabledassistant.routes.rulebooks import rulebooks_bp
from fabledassistant.mcp import mount_mcp
STATIC_DIR = Path(__file__).parent / "static"
@@ -83,6 +84,7 @@ def create_app() -> Quart:
app.register_blueprint(search_bp)
app.register_blueprint(profile_bp)
app.register_blueprint(knowledge_bp)
app.register_blueprint(rulebooks_bp)
@app.before_request
async def before_request():