mirror of
https://github.com/sfiorini/iptv-server.git
synced 2026-04-11 09:10:45 +00:00
5 lines
90 B
Python
5 lines
90 B
Python
from pydantic import BaseModel
|
|
|
|
class User(BaseModel):
|
|
username: str
|
|
password: str |