package account import "errors" var ( ErrAccountNotFound = errors.New("account not found") ErrAccountAlreadyExists = errors.New("account already exists") )