Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tanbushi
/
api-mapper
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
acd383c
api-mapper
/
db_model
/
user.py
tanbushi
auth and is_admin
f807217
9 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
from
pydantic
import
BaseModel
class
UserModel
(
BaseModel
):
id
:
int
=
0
username:
str
password:
str
email:
str
nikename:
str
=
None
is_admin:
int
=
0