package main import "time" type ( Weight struct { rowid int date time.Time weight float32 } AggregatedWeight struct { period string amount float32 } )