This commit is contained in:
2026-08-15 14:50:38 +03:30
commit 820f794eca
15 changed files with 871 additions and 0 deletions
@@ -0,0 +1,12 @@
from pydantic import BaseModel
{% for import in imports %}
{{ import }}
{% endfor %}
class {{ model.name }}(BaseModel):
"""{{ model.description }}"""
{% for field in model.fields %}
{{ field.name }}: {{ field.type }}
{% endfor %}