session_manager_lib/
lib.rs

1// Copyright 2019 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#![warn(clippy::all, clippy::pedantic, clippy::unwrap_used)]
6#![allow(
7    clippy::missing_errors_doc,
8    clippy::module_name_repetitions,
9    clippy::must_use_candidate,
10    clippy::needless_pass_by_value,
11    clippy::semicolon_if_nothing_returned
12)]
13
14pub mod cobalt;
15pub mod power;
16pub mod session_manager;
17pub mod startup;