mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 14:01:40 +00:00
9 lines
165 B
Go
9 lines
165 B
Go
|
|
package account
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
ErrAccountNotFound = errors.New("account not found")
|
||
|
|
ErrAccountAlreadyExists = errors.New("account already exists")
|
||
|
|
)
|