settings/
input.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

pub use self::common::MediaButtons;
pub mod common;
pub mod input_controller;
pub mod input_device_configuration;
pub mod types;

pub(crate) use self::common::monitor_media_buttons;
pub use self::input_device_configuration::build_input_default_settings;

mod input_fidl_handler;