mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-10 04:20:27 +08:00
11 lines
179 B
Go
11 lines
179 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package caches
|
|
|
|
type HotItem struct {
|
|
Key string
|
|
ExpiresAt int64
|
|
Hits uint32
|
|
Status int
|
|
}
|