Skip to content

Commit 11f8a75

Browse files
committed
feat: add controller
1 parent 6382e1a commit 11f8a75

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

main.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from fastapi import FastAPI
2+
from src.controllers.knowledge_base import router as knowledge_base_router
3+
4+
app = FastAPI(
5+
title="Knowly API",
6+
description="API para gerenciamento de bases de conhecimento e usuários.",
7+
version="1.0.0",
8+
)
9+
10+
# Knowledge Bases
11+
app.include_router(knowledge_base_router)

src/features/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)