p2p/disconnection_effectful/
p2p_disconnection_effectful_service.rs

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