mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-05 00:45:29 +08:00
9 lines
194 B
Go
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)
|
|
}
|