Brijesh's Git Server — argus-core @ 590f666c334fbab570964e0ef9a06c3161efb729

Logging service

internal/applications/errors.go (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
package applications

import "errors"

var (
	ErrApplicationNotFound = errors.New("application not found")
	ErrUnauthorized        = errors.New("unauthorized")
	ErrInvalidInput        = errors.New("invalid input")
)