Files
openlan/pkg/libol/error.go
2022-07-29 23:38:54 +08:00

8 lines
119 B
Go
Executable File

package libol
import "fmt"
func NewErr(message string, v ...interface{}) error {
return fmt.Errorf(message, v...)
}