From cb336e8bb97f63a4edf5c267a184ad4d3a927289 Mon Sep 17 00:00:00 2001 From: Xyverle Date: Sun, 30 Mar 2025 13:25:50 -0400 Subject: [PATCH] I am the smartest man alive --- src/input.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input.rs b/src/input.rs index 2d1c78c..b6f1f03 100644 --- a/src/input.rs +++ b/src/input.rs @@ -3,14 +3,14 @@ //! Very incomplete currently #[cfg(unix)] -#[path = "unix.rs"] +#[path = "unix_input.rs"] mod unix_input; #[cfg(unix)] pub use unix_input::*; #[cfg(windows)] -#[path = "windows.rs"] +#[path = "windows_input.rs"] mod windows_input; #[cfg(windows)]