1 /* 2 this package is imported by protos 3 */ 4 package protos 5 6 import ( 7 // take care with importing go-easyops here, it easily becomes circular in non-obvious ways 8 _ "golang.conradwood.net/go-easyops/client" 9 ) 10 11 // TODO: implement this at some point when all easyops are updated and we can cange the proto compile 12 func IsHealthy(name string) (bool, error) { 13 return true, nil 14 } 15