mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-02 22:10:25 +08:00
9 lines
135 B
Go
9 lines
135 B
Go
// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package caches
|
|
|
|
type HotItem struct {
|
|
Key string
|
|
Hits uint32
|
|
}
|