mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-04 07:31:53 +08:00
9 lines
140 B
Go
9 lines
140 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package caches
|
|
|
|
type HotItem struct {
|
|
Key string
|
|
Hits uint32
|
|
}
|