config/error.go
2019-03-11 17:01:08 +08:00

9 lines
150 B
Go

package config
import "errors"
var (
// ErrConfigFileNotExist reprents the error
ErrConfigFileNotExist = errors.New("config file is not exist")
)