1
0
Fork 0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-04-18 08:20:54 +00:00
Xray-core/infra/conf/buildable.go
2020-11-25 19:01:53 +08:00

7 lines
118 B
Go

package conf
import "github.com/golang/protobuf/proto"
type Buildable interface {
Build() (proto.Message, error)
}