mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
11 lines
149 B
Go
11 lines
149 B
Go
package protocol
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrInvalidUser = errors.New("Invalid user.")
|
|
ErrInvalidVersion = errors.New("Invalid version.")
|
|
)
|