mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-13 11:09:10 +08:00
16 lines
328 B
Go
16 lines
328 B
Go
|
//go:build ts2019
|
||
|
|
||
|
package headscale
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gorilla/mux"
|
||
|
)
|
||
|
|
||
|
func (h *Headscale) addLegacyHandlers(router *mux.Router) {
|
||
|
router.HandleFunc("/machine/{mkey}/map", h.PollNetMapHandler).
|
||
|
Methods(http.MethodPost)
|
||
|
router.HandleFunc("/machine/{mkey}", h.RegistrationHandler).Methods(http.MethodPost)
|
||
|
}
|