19 lines
360 B
Go
19 lines
360 B
Go
package forgepb
|
|
|
|
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
|
|
Machine *zoopb.Machine
|
|
}
|
|
|
|
func (f *Forge) GetGoSrc() string {
|
|
return f.goSrc
|
|
}
|