func()

in pkg/model/cluster.go [68:73]


func (c *Cluster) GetNode(name string) (*Node, bool) {
	c.mu.RLock()
	defer c.mu.RUnlock()
	n, ok := c.nodes[name]
	return n, ok
}