headplane/agent/internal/hpagent/sender.go
2025-04-24 19:11:33 -04:00

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
}