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

View file

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