Files
scaffoldforge/scaffoldforge/generators/models.py
7000pctAUTO f19a2c0869
Some checks failed
CI / lint (push) Has started running
CI / test (push) Has been cancelled
fix: resolve CI linting and type checking errors
2026-02-04 06:28:10 +00:00

13 lines
245 B
Python

"""Data models for generators module."""
from dataclasses import dataclass
@dataclass
class FileSpec:
"""Specification for a file to be generated."""
path: str
content: str
encoding: str = "utf-8"
executable: bool = False