mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-04 16:35:27 +08:00
10 lines
222 B
Go
10 lines
222 B
Go
package vercel
|
|
|
|
import "github.com/go-chi/chi/v5"
|
|
|
|
func RegisterRoutes(r chi.Router, h *Handler) {
|
|
r.Post("/vercel/sync", h.syncVercel)
|
|
r.Get("/vercel/status", h.vercelStatus)
|
|
r.Post("/vercel/status", h.vercelStatus)
|
|
}
|