audit_provider.py 333 B

123456789101112131415
  1. from ..schemas.base import DataResponse
  2. class CreativeAuditProvider:
  3. def __init__(self) -> None:
  4. pass
  5. def creative_audit(
  6. self,
  7. *,
  8. audit_rules: list[str],
  9. audit_list: list[str],
  10. validation_rules: list[str]
  11. ) -> DataResponse:
  12. # Implementation for creative audit
  13. pass