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