mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-09 14:15:53 +00:00
15 lines
168 B
Go
15 lines
168 B
Go
package bigcache
|
|
|
|
import "time"
|
|
|
|
type clock interface {
|
|
epoch() int64
|
|
}
|
|
|
|
type systemClock struct {
|
|
}
|
|
|
|
func (c systemClock) epoch() int64 {
|
|
return time.Now().Unix()
|
|
}
|