mirror of https://github.com/v2ray/v2ray-core
10 lines
99 B
Go
10 lines
99 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
BadConfiguration = errors.New("Bad configuration.")
|
||
|
)
|