FileItem represents a file in the project
| 10 | |
| 11 | // FileItem represents a file in the project |
| 12 | type FileItem struct { |
| 13 | Type string `json:"type"` |
| 14 | Name string `json:"name"` |
| 15 | Content string `json:"content,omitempty"` |
| 16 | Contents []FileItem `json:"contents,omitempty"` |
| 17 | } |
| 18 | |
| 19 | // ProjectData represents the entire project structure with instructions |
| 20 | type ProjectData struct { |
nothing calls this directly
no outgoing calls
no test coverage detected