feat: add offset field to telemetry

This commit is contained in:
Garionion 2023-12-29 12:38:20 +01:00
parent f404c44a89
commit 0ce69d9b5b
No known key found for this signature in database
1 changed files with 4 additions and 3 deletions

View File

@ -11,9 +11,10 @@ import (
)
type Telemetry struct {
Slug string `json:"slug"`
EventType string `json:"type"`
QualityChangeUp bool `json:"isUp"`
Slug string `json:"slug"`
EventType string `json:"type"`
QualityChangeUp bool `json:"isUp"`
Offset float32 `json:"offset"`
}
type metrics struct {