10 lines
130 B
Python
10 lines
130 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class About(BaseModel):
|
|
name: str
|
|
email: str
|
|
bio: str
|
|
github: str
|
|
gitea: str
|