mirror of https://github.com/v2ray/v2ray-core
10 lines
127 B
Go
10 lines
127 B
Go
![]() |
package conf
|
||
|
|
||
|
import (
|
||
|
"v2ray.com/core/common/loader"
|
||
|
)
|
||
|
|
||
|
type Buildable interface {
|
||
|
Build() (*loader.TypedSettings, error)
|
||
|
}
|