1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-22 00:55:29 -05:00

move buildable to cfg common

This commit is contained in:
Shelikhoo
2021-06-19 13:04:50 +01:00
parent b61d55c6a7
commit 41b54ff61e
16 changed files with 34 additions and 23 deletions

View File

@@ -0,0 +1,7 @@
package cfgcommon
import "github.com/golang/protobuf/proto"
type Buildable interface {
Build() (proto.Message, error)
}