mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-08 19:40:25 +08:00
13 lines
224 B
Go
13 lines
224 B
Go
|
|
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
||
|
|
|
||
|
|
package counters
|
||
|
|
|
||
|
|
type Span struct {
|
||
|
|
Timestamp int64
|
||
|
|
Count uint64
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewSpan() *Span {
|
||
|
|
return &Span{}
|
||
|
|
}
|