mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 10:26:01 -05:00
18 lines
228 B
Go
18 lines
228 B
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrorNoSuchCommand = errors.New("No such command.")
|
||
|
)
|
||
|
|
||
|
type Command interface {
|
||
|
Marshal(io.Writer) (int, error)
|
||
|
Unmarshal([]byte) error
|
||
|
}
|
||
|
|
||
|
type CommandCreator func() Command
|