Add API endpoint to retrieve all chores via API

This commit is contained in:
Mo Tarbin 2024-11-29 19:04:49 -05:00
parent a3c5a81ce4
commit a8f8550a66
2 changed files with 59 additions and 0 deletions

View file

@ -85,11 +85,14 @@ func main() {
fx.Provide(thing.NewWebhook),
fx.Provide(thing.NewHandler),
fx.Provide(chore.NewAPI),
fx.Provide(frontend.NewHandler),
// fx.Invoke(RunApp),
fx.Invoke(
chore.Routes,
chore.APIs,
user.Routes,
circle.Routes,
thing.Routes,