13 lines
245 B
Python
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 |