mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-10 19:36:32 -05:00
6d25d51519
Co-authored-by: loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com>
8 lines
118 B
Go
8 lines
118 B
Go
package conf
|
|
|
|
import "google.golang.org/protobuf/proto"
|
|
|
|
type Buildable interface {
|
|
Build() (proto.Message, error)
|
|
}
|