feat: add offset field to telemetry
This commit is contained in:
parent
f404c44a89
commit
0ce69d9b5b
1 changed files with 4 additions and 3 deletions
7
main.go
7
main.go
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue