Initial upload: ScaffoldForge CLI tool with full codebase, tests, and CI/CD

This commit is contained in:
2026-02-04 05:37:10 +00:00
parent 27590cbe60
commit 7dc9bfcb5f

View File

@@ -0,0 +1,14 @@
"""Data models for generators module."""
from dataclasses import dataclass
from typing import Any, Dict, List
@dataclass
class FileSpec:
"""Specification for a file to be generated."""
path: str
content: str
encoding: str = "utf-8"
executable: bool = False