1
0
mirror of https://github.com/apernet/OpenGFW.git synced 2025-05-06 19:48:40 +08:00
2024-01-19 16:45:01 -08:00

19 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
}