domain_service.py 208 B

1234567891011
  1. # (c) Nelen & Schuurmans
  2. from pydantic import BaseModel
  3. __all__ = ["DomainService"]
  4. class DomainService(BaseModel):
  5. class Config:
  6. allow_mutation = False
  7. arbitrary_types_allowed = True