mirror of
https://github.com/emo2007/block-accounting.git
synced 2024-11-14 22:26:27 +00:00
8 lines
99 B
Go
8 lines
99 B
Go
|
package auth
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrorInviteLinkExpired = errors.New("invite link expired")
|
||
|
)
|