1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 00:06:11 -04:00
v2fly/tools/conf/builable.go

10 lines
126 B
Go
Raw Normal View History

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