settings/input.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
5pub use self::common::MediaButtons;
6pub mod common;
7pub mod input_controller;
8pub mod input_device_configuration;
9pub mod types;
10
11pub(crate) use self::common::monitor_media_buttons;
12pub use self::input_device_configuration::build_input_default_settings;
13
14mod input_fidl_handler;