chore: Initial commit

This commit is contained in:
2026-04-01 14:30:07 +01:00
commit 91cdd6523f
9 changed files with 141 additions and 0 deletions

11
app/models.py Normal file
View File

@@ -0,0 +1,11 @@
from sqlalchemy import Integer, String
from sqlalchemy.orm import Mapped, mapped_column
from .db import Base
class Drink(Base):
__tablename__ = "drinks"
id: Mapped[int] = mapped_column(Integer, primary_key=True)
name: Mapped[str] = mapped_column(String)