v2ray-core/tools/conf/builable.go

10 lines
126 B
Go
Raw Normal View History

2016-10-17 14:35:13 +02:00
package conf
import (
2016-12-15 11:51:09 +01:00
"v2ray.com/core/common/serial"
2016-10-17 14:35:13 +02:00
)
type Buildable interface {
2016-12-15 11:51:09 +01:00
Build() (*serial.TypedMessage, error)
2016-10-17 14:35:13 +02:00
}