예제 #1
0
파일: util.go 프로젝트: gernest/legend
func GetServiceName(info core.ServiceInfo) string {
	return info.Name() + "." + fmt.Sprint(info.Status()) + "." + info.ID()
}
예제 #2
0
파일: orchestra.go 프로젝트: gernest/legend
func (s services) add(info core.ServiceInfo) {
	mu.Lock()
	s[info.ID()] = info
	mu.Unlock()
}