From e7ff8a826909c1489475f40c7f7bc8a7f2446793 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Sun, 31 Dec 2023 17:11:05 +0100 Subject: [PATCH] fix: unused import --- src/types.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/types.rs b/src/types.rs index bb1bd42..21ca5f5 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,10 +1,7 @@ // Use this module as an interface to export all types declared inside of endpoints/ // // These are not used in here, just exporting -pub use crate::{ - api::endpoints::*, - ipfs::{IpfsAdd, IpfsPinList, IpfsPinState, IpfsPinUpdate}, -}; +pub use crate::ipfs::{IpfsAdd, IpfsPinList, IpfsPinState, IpfsPinUpdate}; /// Enum for any possible JSON value. ///