Fixed accidental committed move and fixed unused functions warnings

The accidental commit took place in
3558a4869a. Modules were not declared public which caused warnings in these modules
This commit is contained in:
Dennis Potter 2018-07-26 18:20:53 +02:00
parent 82abb70314
commit acf5729180
3 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@
//! //!
//! `footswitch-rs` enables you to use footswitches of <xxx> //! `footswitch-rs` enables you to use footswitches of <xxx>
//! //!
mod key_operations; pub mod key_operations;
mod pedal_operations; pub mod pedal_operations;
#[macro_use] #[macro_use]
mod messages; mod messages;

View File

@ -1,6 +1,6 @@
#[macro_use] #[macro_use]
#[path = "messages.rs"] mod messages; #[path = "messages.rs"] pub mod messages;
#[path = "key_operations.rs"] mod key_operations; #[path = "key_operations.rs"] pub mod key_operations;
extern crate hidapi; extern crate hidapi;
use std::process; use std::process;