204848
Initial commit: ds2api with HF Spaces support
feccc69
Raw
History Blame Contribute Delete
194 Bytes
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)
}