Files
spend-sparrow/types/types.go
Tim Wundenberg d8f6984a2d
Some checks failed
Build Docker Image / Build-Docker-Image (push) Failing after 3m23s
wip: implement account service and db
2025-04-21 20:58:08 +02:00

11 lines
180 B
Go

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