mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
18 lines
245 B
Go
18 lines
245 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type configError struct {
|
|
Field string
|
|
Err error
|
|
}
|
|
|
|
func (e configError) Error() string {
|
|
return fmt.Sprintf("invalid config: %s: %s", e.Field, e.Err)
|
|
}
|
|
|
|
func (e configError) Unwrap() error {
|
|
return e.Err
|
|
}
|