Send announcements not as part of scanning

This commit is contained in:
Natsu Kagami 2020-09-14 22:33:23 -04:00
parent bc888e816b
commit 0fd5379446
No known key found for this signature in database
GPG key ID: F17543D4B9424B94
2 changed files with 67 additions and 50 deletions

View file

@ -24,6 +24,9 @@ pub use anyhow::{Error, Result};
/// Re-export useful future and stream utils
pub use futures_util::{future, stream, FutureExt, StreamExt, TryFutureExt, TryStreamExt};
/// Re-export the spawn function
pub use tokio::spawn as spawn_future;
/// The global app data.
pub type AppData = Arc<RwLock<TypeMap>>;