Files

9 lines
165 B
Go
Raw Permalink Normal View History

2025-11-30 17:12:50 +00:00
package account
import "errors"
var (
ErrAccountNotFound = errors.New("account not found")
ErrAccountAlreadyExists = errors.New("account already exists")
)