power_manager_integration_test_lib/client_connectors/mod.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
5mod power_profile_client;
6mod system_power_mode_client;
7mod thermal_client;
8
9pub use power_profile_client::PowerProfileClient;
10pub use system_power_mode_client::{PowerLevelClient, SystemModeClient};
11pub use thermal_client::ThermalClient;