8 lines
160 B
Go
Raw Normal View History

2018-04-16 13:17:23 +00:00
package utils
// YearRegistrations describes how many user registrations happened in a year.
type YearRegistrations struct {
Total int
Months map[int]int
}