File tree Expand file tree Collapse file tree 5 files changed +29
-26
lines changed
Expand file tree Collapse file tree 5 files changed +29
-26
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ package models
2+
3+ type Command struct {
4+ Name string `json:"name"`
5+ Option string `json:"file"`
6+ Path string `json:"path"` // optional, for single file support
7+ }
Original file line number Diff line number Diff line change 1+ package models
2+
3+ type File struct {
4+ Name string `json:"name"`
5+ Path string `json:"path"`
6+ }
Original file line number Diff line number Diff line change 1+ package models
2+
3+ type Project struct {
4+ Name string `json:"name"`
5+ Arch string `json:"arch"`
6+ OS string `json:"os"`
7+ Vars []Var `json:"dev-vars"`
8+ Commands []Command `json:"commands"`
9+ Files []File `json:"files"`
10+ }
Original file line number Diff line number Diff line change 1+ package models
2+
3+ type Var struct {
4+ Key string `json:"key"`
5+ Value string `json:"value"`
6+ }
You can’t perform that action at this time.
0 commit comments