Phase 3 implementation. Coordinate system implemented. Initial text box tool implemented.
This commit is contained in:
parent
c159ad4f37
commit
4cb038ec78
34 changed files with 6676 additions and 130 deletions
|
|
@ -14,5 +14,14 @@ router.include_router(auth_router)
|
|||
# Documents
|
||||
router.include_router(documents_router)
|
||||
|
||||
# Annotations
|
||||
from app.api.v1.annotations import router as annotations_router
|
||||
router.include_router(annotations_router)
|
||||
|
||||
# Health (unauthenticated)
|
||||
router.include_router(health_router)
|
||||
|
||||
from app.config import settings
|
||||
if settings.DEBUG:
|
||||
from app.api.v1.debug import router as debug_router
|
||||
router.include_router(debug_router)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue