v2ray-core/proxy/vmess/command/command.go

18 lines
215 B
Go
Raw Normal View History

2015-12-12 12:11:49 +00:00
package command
import (
"errors"
"io"
)
var (
ErrorNoSuchCommand = errors.New("No such command.")
)
type Command interface {
2016-01-19 22:41:40 +00:00
Marshal(io.Writer)
2015-12-12 12:11:49 +00:00
Unmarshal([]byte) error
}
type CommandCreator func() Command