From 044414fa062d6d43a60ccfcb4f11d66051e7944c Mon Sep 17 00:00:00 2001 From: Nefo Fortressia Date: Fri, 12 Nov 2021 16:56:45 +0700 Subject: [PATCH] style: reorder import order in window/mod.rs --- src/components/window/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/window/mod.rs b/src/components/window/mod.rs index 330a308..40ed731 100644 --- a/src/components/window/mod.rs +++ b/src/components/window/mod.rs @@ -2,9 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -mod file; - -mod imp; +pub mod file; +pub mod imp; pub mod menubar; use glib::object::IsA;