release: Elysia ToDo v1.0.0
鍏ㄦ爤涓汉淇℃伅绠$悊搴旂敤锛岄泦鎴愬緟鍔炰换鍔°€佷範鎯墦鍗°€佺邯蹇垫棩鎻愰啋銆佽祫浜ф€昏鍔熻兘銆 Made-with: Cursor
This commit is contained in:
44
api/app/schemas/__init__.py
Normal file
44
api/app/schemas/__init__.py
Normal file
@@ -0,0 +1,44 @@
|
||||
from app.schemas.task import (
|
||||
TaskBase,
|
||||
TaskCreate,
|
||||
TaskUpdate,
|
||||
TaskResponse,
|
||||
)
|
||||
from app.schemas.category import (
|
||||
CategoryBase,
|
||||
CategoryCreate,
|
||||
CategoryUpdate,
|
||||
CategoryResponse,
|
||||
)
|
||||
from app.schemas.tag import (
|
||||
TagBase,
|
||||
TagCreate,
|
||||
TagResponse,
|
||||
)
|
||||
from app.schemas.common import (
|
||||
DeleteResponse,
|
||||
PaginatedResponse,
|
||||
)
|
||||
from app.schemas.user_settings import (
|
||||
UserSettingsUpdate,
|
||||
UserSettingsResponse,
|
||||
)
|
||||
from app.schemas.habit import (
|
||||
HabitGroupCreate,
|
||||
HabitGroupUpdate,
|
||||
HabitGroupResponse,
|
||||
HabitCreate,
|
||||
HabitUpdate,
|
||||
HabitResponse,
|
||||
CheckinCreate,
|
||||
CheckinResponse,
|
||||
HabitStatsResponse,
|
||||
)
|
||||
from app.schemas.anniversary import (
|
||||
AnniversaryCategoryCreate,
|
||||
AnniversaryCategoryUpdate,
|
||||
AnniversaryCategoryResponse,
|
||||
AnniversaryCreate,
|
||||
AnniversaryUpdate,
|
||||
AnniversaryResponse,
|
||||
)
|
||||
Reference in New Issue
Block a user