1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package cfgcommon
|
| import (
| "context"
|
| "github.com/golang/protobuf/proto"
| )
|
| type Buildable interface {
| Build() (proto.Message, error)
| }
|
| type BuildableV5 interface {
| BuildV5(ctx context.Context) (proto.Message, error)
| }
|
|