Skip to content

Commit

Permalink
fix: SRU import
Browse files Browse the repository at this point in the history
  • Loading branch information
Kohulan committed Mar 22, 2023
1 parent 8daa1fb commit 988f76c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from fastapi.responses import RedirectResponse

# from .config import settings
from .routers import converters, chem, compose, decimer
from .routers import chem, converters, compose, decimer
from fastapi.middleware.cors import CORSMiddleware
from fastapi.openapi.utils import get_openapi
import os
Expand All @@ -19,8 +19,8 @@
allow_headers=["*"],
)

app.include_router(converters.router)
app.include_router(chem.router)
app.include_router(converters.router)
app.include_router(compose.router)
app.include_router(decimer.router)

Expand Down

0 comments on commit 988f76c

Please sign in to comment.