Skip to content
Snippets Groups Projects
Commit 1d324096 authored by Tucker Siegel's avatar Tucker Siegel
Browse files

update

parent 12f8c49c
No related branches found
No related tags found
No related merge requests found
......@@ -97,16 +97,16 @@ type StageData struct {
}
type Bin struct {
Date time.Time
Value float64
Date time.Time `json:"date"`
Value float64 `json:"value"`
}
type Bins struct {
Bins []Bin
NormalMean time.Time
NormalMin time.Time
NormalMax time.Time
Count int
Bins []Bin `json:"bins"`
NormalMean time.Time `json:"normal_mean"`
NormalMin time.Time `json:"normal_min"`
NormalMax time.Time `json:"normal_max"`
Count int `json:"count"`
}
type StageMatches struct {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment