forgepb/structs.go

19 lines
360 B
Go
Raw Normal View History

2024-11-28 00:02:27 -06:00
package forgepb
2024-11-28 19:56:46 -06:00
import (
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/lib/protobuf/zoopb"
)
2024-11-28 08:35:39 -06:00
2024-11-28 00:02:27 -06:00
// maybe an interface someday?
type Forge struct {
2024-11-28 19:56:46 -06:00
goSrc string // the path to go/src
Config *ForgeConfigs // config repos for readonly, private, etc
Repos *gitpb.Repos
Machine *zoopb.Machine
2024-11-28 00:02:27 -06:00
}
2024-11-28 08:54:30 -06:00
func (f *Forge) GetGoSrc() string {
return f.goSrc
}