1
- from typing import Annotated
1
+ from typing import Annotated , Union , Dict , Any
2
2
3
3
from fastapi import Request , Depends
4
4
from sqlalchemy .ext .asyncio import AsyncSession
@@ -23,7 +23,7 @@ async def write_post(
23
23
post : PostCreate ,
24
24
current_user : Annotated [UserRead , Depends (get_current_user )],
25
25
db : Annotated [AsyncSession , Depends (async_get_db )]
26
- ):
26
+ ) -> PostRead :
27
27
db_user = await crud_users .get (db = db , schema_to_select = UserRead , username = username , is_deleted = False )
28
28
if db_user is None :
29
29
raise NotFoundException ("User not found" )
@@ -50,7 +50,7 @@ async def read_posts(
50
50
db : Annotated [AsyncSession , Depends (async_get_db )],
51
51
page : int = 1 ,
52
52
items_per_page : int = 10
53
- ):
53
+ ) -> PaginatedListResponse [ PostRead ] :
54
54
db_user = await crud_users .get (db = db , schema_to_select = UserRead , username = username , is_deleted = False )
55
55
if not db_user :
56
56
raise NotFoundException ("User not found" )
@@ -78,7 +78,7 @@ async def read_post(
78
78
username : str ,
79
79
id : int ,
80
80
db : Annotated [AsyncSession , Depends (async_get_db )]
81
- ):
81
+ ) -> PostRead :
82
82
db_user = await crud_users .get (db = db , schema_to_select = UserRead , username = username , is_deleted = False )
83
83
if db_user is None :
84
84
raise NotFoundException ("User not found" )
@@ -103,7 +103,7 @@ async def patch_post(
103
103
values : PostUpdate ,
104
104
current_user : Annotated [UserRead , Depends (get_current_user )],
105
105
db : Annotated [AsyncSession , Depends (async_get_db )]
106
- ):
106
+ ) -> Dict [ str , str ] :
107
107
db_user = await crud_users .get (db = db , schema_to_select = UserRead , username = username , is_deleted = False )
108
108
if db_user is None :
109
109
raise NotFoundException ("User not found" )
@@ -131,7 +131,7 @@ async def erase_post(
131
131
id : int ,
132
132
current_user : Annotated [UserRead , Depends (get_current_user )],
133
133
db : Annotated [AsyncSession , Depends (async_get_db )]
134
- ):
134
+ ) -> Dict [ str , str ] :
135
135
db_user = await crud_users .get (db = db , schema_to_select = UserRead , username = username , is_deleted = False )
136
136
if db_user is None :
137
137
raise NotFoundException ("User not found" )
@@ -159,7 +159,7 @@ async def erase_db_post(
159
159
username : str ,
160
160
id : int ,
161
161
db : Annotated [AsyncSession , Depends (async_get_db )]
162
- ):
162
+ ) -> Dict [ str , str ] :
163
163
db_user = await crud_users .get (db = db , schema_to_select = UserRead , username = username , is_deleted = False )
164
164
if db_user is None :
165
165
raise NotFoundException ("User not found" )
0 commit comments