This repository has been archived on 2026-04-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spend-sparrow/types/types.go
T

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.")
)