서비스 디테일과 서비스 서머리 분리

This commit is contained in:
2023-06-07 11:16:53 +09:00
parent 621fd880a2
commit 5696f177e2
3 changed files with 10 additions and 5 deletions

View File

@ -106,7 +106,7 @@ func (caller apiCaller) writeAccessableServices(w http.ResponseWriter) {
w.Write([]byte(","))
}
w.Write([]byte(fmt.Sprintf(`"%s":`, v.ServiceName)))
serptr := atomic.LoadPointer(&v.serviceSerialized)
serptr := atomic.LoadPointer(&v.serviceSummarySerialized)
w.Write(*(*[]byte)(serptr))
start = false
}