Initial upload: ScaffoldForge CLI tool with full codebase, tests, and CI/CD
This commit is contained in:
14
scaffoldforge/generators/models.py
Normal file
14
scaffoldforge/generators/models.py
Normal 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
|
||||
Reference in New Issue
Block a user