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