Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

order から register, placement(s) から order(s) へ命名を変更する #104

Merged
merged 6 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from fastapi.staticfiles import StaticFiles

from .env import DEBUG
from .routers import order, placements, products, stat
from .routers import orders, products, register, stat
from .store import startup_and_shutdown_db
from .templates import macro_template

Expand Down Expand Up @@ -35,6 +35,6 @@ async def get_root(request: Request):


app.include_router(products.router)
app.include_router(order.router)
app.include_router(placements.router)
app.include_router(register.router)
app.include_router(orders.router)
app.include_router(stat.router)
Loading