add GET /w/income

This commit is contained in:
Gabe Farrell 2023-04-18 21:20:37 -04:00
parent a65f6f09b1
commit 0d0cbc4e79
2 changed files with 42 additions and 0 deletions

View file

@ -24,6 +24,7 @@ func Router() *chi.Mux {
// income
r.Get("/income/month", GetMonthIncome)
r.Get("/income", IncomeByCategory)
return r
}