From d80b38cea4740299ed0cc829af6d0f33248c9653 Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Sun, 21 Aug 2022 17:13:06 -0400 Subject: [PATCH] Move networking line back under listview import --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b2293a5..decd711 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -148,10 +148,10 @@ pub mod keys; pub mod layer; pub mod layout; -pub mod networking; #[cfg(feature = "appkit")] pub mod listview; +pub mod networking; pub mod notification_center; pub(crate) mod objc_access;