framework

This commit is contained in:
2026-03-15 12:25:51 -04:00
parent e07db4780f
commit fb14c7d804
4 changed files with 36 additions and 1 deletions

6
schemas.py Normal file
View File

@@ -0,0 +1,6 @@
from pydantic import BaseModel, FilePath, EmailStr
class DomainRequest(BaseModel):
domain: str
credentials_file: FilePath
email: EmailStr