headplane/agent/hpagent/sender.go
2024-12-30 13:48:49 +05:30

12 lines
217 B
Go

package hpagent
import (
"tailscale.com/tailcfg"
)
// Sends the status to the Headplane master
func (s *Socket) SendStatus(status map[string]*tailcfg.HostinfoView) error {
err := s.WriteJSON(status)
return err
}