refactor: move traits to sync module and update imports

This commit is contained in:
Callum Leslie 2026-03-04 20:58:17 +00:00
parent 72b87fd6e0
commit 8366421ede
7 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
use std::sync::Arc;
#[cfg(feature = "sync-flume")]
use crate::traits::{ChannelError, ChannelReceiver, ChannelSender, ChannelType};
use crate::sync::traits::{ChannelError, ChannelReceiver, ChannelSender, ChannelType};
use crate::types;
use arc_swap::ArcSwap;
use flume;