settings/agent/
inspect.rs

1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/// Agent for capturing setting values of messages between proxies and setting
6/// handlers.
7pub(crate) mod setting_values;
8
9/// Agent for writing the recent request payloads to inspect.
10pub(crate) mod setting_proxy;
11
12/// Agent for writing api usage counts.
13pub(crate) mod usage_counts;
14
15/// Agent for writing external api calls and responses to inspect.
16pub(crate) mod external_apis;