(ctx context.Context, reply string, req *proxy.Request)
| 33 | } |
| 34 | |
| 35 | func (s *Server) deviceStateDelete(ctx context.Context, reply string, req *proxy.Request) { |
| 36 | s.sendError(reply, s.ari.DeviceState().Delete(req.Key)) |
| 37 | } |
| 38 | |
| 39 | func (s *Server) deviceStateList(ctx context.Context, reply string, req *proxy.Request) { |
| 40 | list, err := s.ari.DeviceState().List(nil) |
nothing calls this directly
no test coverage detected