1
0
mirror of https://github.com/writeas/htmlhouse synced 2025-07-18 21:08:16 +00:00
htmlhouse/models.go
2015-10-26 16:56:51 -04:00

14 lines
131 B
Go

package htmlhouse
type (
HouseStats struct {
ID string
Stats []Stat
}
Stat struct {
Data string
Label string
}
)