Initial Labels Page & API

This commit is contained in:
allanice001
2025-09-03 17:09:39 +01:00
parent 26aef56d1d
commit b99a0684fd
20 changed files with 834 additions and 109 deletions

View File

@@ -118,6 +118,8 @@ func RegisterRoutes(r chi.Router) {
l.Get("/", labels.ListLabels)
l.Post("/", labels.CreateLabel)
l.Get("/{id}", labels.GetLabel)
l.Patch("/{id}", labels.UpdateLabel)
l.Delete("/{id}", labels.DeleteLabel)
})
})
})