mirror of
https://github.com/writeas/htmlhouse
synced 2025-07-18 21:08:16 +00:00
14 lines
131 B
Go
14 lines
131 B
Go
package htmlhouse
|
|
|
|
type (
|
|
HouseStats struct {
|
|
ID string
|
|
Stats []Stat
|
|
}
|
|
|
|
Stat struct {
|
|
Data string
|
|
Label string
|
|
}
|
|
)
|