8 lines
160 B
Go
Raw Normal View History

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