1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
mod actor;
pub use actor::Broadcaster;

mod link;
pub use link::{BroadcasterLinkForClient, BroadcasterLinkForProvider};

use meio::Action;
use rill_protocol::provider::{Description, EntryId};

#[derive(Debug, Clone)]
pub enum PathNotification {
    Name { name: EntryId },
    Paths { descriptions: Vec<Description> },
}

impl Action for PathNotification {}