Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 338 B view raw
1mod announcer; 2#[cfg(not(feature = "integration_test"))] 3mod directory; 4#[cfg(feature = "integration_test")] 5pub mod directory; 6mod error; 7mod limits; 8mod ring; 9mod service; 10mod types; 11mod watcher; 12 13pub use announcer::ServiceAnnouncer; 14pub use error::DiscoveryError; 15pub use service::ServiceRegistration; 16pub use watcher::ServiceWatcher;