recommender/pkg/consts/application.go

8 lines
103 B
Go
Raw Normal View History

2024-11-07 12:00:06 +00:00
package consts
import "errors"
var (
ErrApplicationNotFound = errors.New("application not found")
)