MCPcopy Create free account
hub / github.com/CyCoreSystems/ari-proxy / applicationList

Method applicationList

server/application.go:25–35  ·  view source on GitHub ↗
(ctx context.Context, reply string, req *proxy.Request)

Source from the content-addressed store, hash-verified

23}
24
25func (s *Server) applicationList(ctx context.Context, reply string, req *proxy.Request) {
26 list, err := s.ari.Application().List(nil)
27 if err != nil {
28 s.sendError(reply, err)
29 return
30 }
31
32 s.publish(reply, &proxy.Response{
33 Keys: list,
34 })
35}
36
37func (s *Server) applicationGet(ctx context.Context, reply string, req *proxy.Request) {
38 data, err := s.ari.Application().Data(req.Key)

Callers

nothing calls this directly

Calls 4

sendErrorMethod · 0.95
publishMethod · 0.95
ApplicationMethod · 0.80
ListMethod · 0.65

Tested by

no test coverage detected