Files
ds2api/internal/httpapi/admin/devcapture/routes.go
2026-04-26 06:58:20 +08:00

9 lines
194 B
Go

package devcapture
import "github.com/go-chi/chi/v5"
func RegisterRoutes(r chi.Router, h *Handler) {
r.Get("/dev/captures", h.getDevCaptures)
r.Delete("/dev/captures", h.clearDevCaptures)
}