mirror of
https://github.com/ltcptgeneral/cs239-caching.git
synced 2026-06-06 01:07:33 +00:00
Fixed POST requests in system
This commit is contained in:
@@ -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