prototype

This commit is contained in:
2025-08-20 21:15:35 +03:00
parent 598d516b57
commit 58414744ce
11 changed files with 390 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package global
type ProjectFile struct {
ProjectName string `json:"project_name"`
Target string `json:"target"`
Modules []IncludeModule `json:"include_modules"`
}
type IncludeModule struct {
CFile string `json:"c_file"`
CHeader string `json:"c_header"`
}