2024-11-28 00:02:27 -06:00
|
|
|
package forgepb
|
|
|
|
|
2024-11-28 08:35:39 -06:00
|
|
|
import "go.wit.com/lib/protobuf/gitpb"
|
|
|
|
|
2024-11-28 00:02:27 -06:00
|
|
|
// maybe an interface someday?
|
|
|
|
type Forge struct {
|
2024-11-28 08:35:39 -06:00
|
|
|
goSrc string // the path to go/src
|
|
|
|
Config *ForgeConfigs // config repos for readonly, private, etc
|
|
|
|
Repos *gitpb.Repos
|
2024-11-28 00:02:27 -06:00
|
|
|
}
|