1use crate::PeerId; 2 3pub trait P2pDisconnectionService: redux::Service { 4 fn disconnect(&mut self, peer_id: PeerId) -> bool; 5}