Files
spend-sparrow/types/types.go
Tim Wundenberg f085ed378e
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 5m5s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 4m53s
feat(deps): update golangci-lint to v2
2025-05-06 19:45:41 +02:00

11 lines
179 B
Go

package types
import (
"errors"
)
var (
ErrInternal = errors.New("internal server error")
ErrUnauthorized = errors.New("you are not authorized to perform this action")
)