github.com/cloud-foundations/dominator@v0.0.0-20221004181915-6e4fee580046/fleetmanager/hypervisors/fsstorer/ip.go (about)

     1  package fsstorer
     2  
     3  import "fmt"
     4  
     5  func (ip IP) string() string {
     6  	return fmt.Sprintf("%d.%d.%d.%d", ip[0], ip[1], ip[2], ip[3])
     7  }