mirror of
https://github.com/go-gitea/gitea
synced 2025-01-09 04:16:18 +01: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
|
||
|
}
|