diff options
| author | Jeff Carr <[email protected]> | 2024-11-28 19:56:46 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-28 19:56:46 -0600 |
| commit | c10d3410a2c48896c76a071643fdc8d1d7428498 (patch) | |
| tree | 408053045fece7ef9536f12524e10a832a3e8e07 /structs.go | |
| parent | a89dc7f9763c07305f7f73df5e91825f7fc8af1d (diff) | |
pull in machine
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1,12 +1,16 @@ package forgepb -import "go.wit.com/lib/protobuf/gitpb" +import ( + "go.wit.com/lib/protobuf/gitpb" + "go.wit.com/lib/protobuf/zoopb" +) // maybe an interface someday? type Forge struct { - goSrc string // the path to go/src - Config *ForgeConfigs // config repos for readonly, private, etc - Repos *gitpb.Repos + goSrc string // the path to go/src + Config *ForgeConfigs // config repos for readonly, private, etc + Repos *gitpb.Repos + Machine *zoopb.Machine } func (f *Forge) GetGoSrc() string { |
