mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
9 lines
128 B
Go
9 lines
128 B
Go
|
package metrics
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type timestampedValue struct {
|
||
|
Time time.Time `json:"time"`
|
||
|
Value int `json:"value"`
|
||
|
}
|