mirror of
https://gitee.com/gitea/gitea.git
synced 2024-12-14 01:20:51 +08:00
7 lines
124 B
Go
7 lines
124 B
Go
|
package oracle
|
||
|
|
||
|
type Oracle interface {
|
||
|
GetTimestamp() (uint64, error)
|
||
|
IsExpired(lockTimestamp uint64, TTL uint64) bool
|
||
|
}
|