summaryrefslogtreecommitdiff
path: root/pages/pages.go
blob: 0f03cdd7477d433e14abb4feff7f8445d56375b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package pages

import (
	"net/http"
)

func Init() Page {
	return simple(index())
}

func Recur() Page {
	return simpleByQuery(recur, Q.GetRecurExpenses)
}

func Categories() Page {
	return simpleByQuery(categories, Q.GetCategoriesOrdered)
}

func NotFound() http.HandlerFunc {
	return render(notfound())
}