mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-08-01 05:08:28 +00:00
10 lines
105 B
Go
10 lines
105 B
Go
package config
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
BadConfiguration = errors.New("Bad proxy configuration.")
|
|
)
|