Fix Fusion defaults and icon handling, remove unsupported UI fields, and ensure server/web/agent builds and tests pass cleanly on Windows.
14 lines
282 B
Go
14 lines
282 B
Go
//go:build !p2p
|
|
|
|
package client
|
|
|
|
// MeshNode is a no-op stub unless built with `-tags p2p`.
|
|
type MeshNode struct{}
|
|
|
|
func NewMeshNode(_ *AgentClient) *MeshNode { return &MeshNode{} }
|
|
|
|
func (m *MeshNode) Start() error { return nil }
|
|
|
|
func (m *MeshNode) BroadcastToMesh(_ Message) {}
|
|
|