garm/errors/errors.go
2022-04-15 15:22:47 +00:00

7 lines
77 B
Go

package errors
import "fmt"
var (
ErrNotFound = fmt.Errorf("Not found")
)