Added user registrations page

This commit is contained in:
2018-04-16 15:17:23 +02:00
parent b49496fe16
commit 802273b7c3
6 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package utils
// YearRegistrations describes how many user registrations happened in a year.
type YearRegistrations struct {
Total int
Months map[int]int
}