mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
8 lines
153 B
Go
8 lines
153 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
func (this *LoginSession) IsAvailable() bool {
|
|
return this.ExpiresAt == 0 || int64(this.ExpiresAt) > time.Now().Unix()
|
|
}
|