mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-18 05:25:49 +00:00
8 lines
118 B
Go
8 lines
118 B
Go
|
|
package conf
|
||
|
|
|
||
|
|
import "google.golang.org/protobuf/proto"
|
||
|
|
|
||
|
|
type Buildable interface {
|
||
|
|
Build() (proto.Message, error)
|
||
|
|
}
|