17 lines
187 B
Go
17 lines
187 B
Go
package main
|
|
|
|
import "time"
|
|
|
|
type (
|
|
|
|
Weight struct {
|
|
rowid int
|
|
date time.Time
|
|
weight float32
|
|
}
|
|
AggregatedWeight struct {
|
|
period string
|
|
amount float32
|
|
}
|
|
)
|