Skip to content

Commit

Permalink
fix: reinstate delete
Browse files Browse the repository at this point in the history
  • Loading branch information
Kohulan committed Apr 23, 2024
1 parent f5c2713 commit af5a076
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
from prometheus_fastapi_instrumentator import Instrumentator

from .routers import chem

from .routers import converters
from .routers import depict
from .routers import ocsr
from .routers import tools
from app.exception_handlers import input_exception_handler
from app.exception_handlers import InvalidInputException
from app.schemas import HealthCheck
Expand All @@ -31,7 +34,10 @@
)

app.include_router(chem.router)

app.include_router(converters.router)
app.include_router(depict.router)
app.include_router(tools.router)
app.include_router(ocsr.router)

app = VersionedFastAPI(
app,
Expand Down

0 comments on commit af5a076

Please sign in to comment.