builable.go 126 B

123456789
  1. package conf
  2. import (
  3. "v2ray.com/core/common/serial"
  4. )
  5. type Buildable interface {
  6. Build() (*serial.TypedMessage, error)
  7. }