mirror of
https://github.com/ltcptgeneral/cs239-caching.git
synced 2025-10-09 06:10:19 +00:00
Fixed POST requests in system
This commit is contained in:
9
app/models/models.py
Normal file
9
app/models/models.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
class User(BaseModel):
|
||||
user_id: str
|
||||
name: str | None = None
|
||||
followers: int | None = None
|
||||
bio: str | None = None
|
||||
posts: str | None = None
|
||||
friends: list | None = None
|
Reference in New Issue
Block a user