Example #1
0
func GetRecentEntries() []model.DayEntries {
	today, _ := util.GetTodayInt()
	return GetDaysEntries(today, 10, 20)
}
Example #2
0
func GetTopEntries() []model.DayEntries {
	today, _ := util.GetTodayInt()
	return GetDaysEntries(today, 3, 1000)
}