edge/pkg/jwtutil/error.go
William Petit d2472623f2
All checks were successful
arcad/edge/pipeline/pr-master This commit looks good
feat(storage-server): jwt based authentication
2023-10-01 19:56:38 -06:00

7 lines
131 B
Go

package jwtutil
import "errors"
var ErrUnauthenticated = errors.New("unauthenticated")
var ErrNoKeySet = errors.New("no keyset")