mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-05 08:55:28 +08:00
8 lines
135 B
Go
8 lines
135 B
Go
package version
|
|
|
|
import "github.com/go-chi/chi/v5"
|
|
|
|
func RegisterRoutes(r chi.Router, h *Handler) {
|
|
r.Get("/version", h.getVersion)
|
|
}
|