diff options
| author | Fuwn <[email protected]> | 2021-05-23 16:59:26 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-23 16:59:26 -0700 |
| commit | cb0510c0801317c4e9dffa1f83c2ff1a978178d1 (patch) | |
| tree | d8ab500db2ac81a91fe54243f1318d20c9c37965 /crates/whirl_server/src | |
| parent | docs(crates): modify crate descriptions to fit their tasks (diff) | |
| download | whirl-cb0510c0801317c4e9dffa1f83c2ff1a978178d1.tar.xz whirl-cb0510c0801317c4e9dffa1f83c2ff1a978178d1.zip | |
docs(global): spelling corrections, global docs
Diffstat (limited to 'crates/whirl_server/src')
| -rw-r--r-- | crates/whirl_server/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/whirl_server/src/lib.rs b/crates/whirl_server/src/lib.rs index 584b0b0..a5efc24 100644 --- a/crates/whirl_server/src/lib.rs +++ b/crates/whirl_server/src/lib.rs @@ -1,6 +1,8 @@ // Copyleft (ɔ) 2021-2021 The Whirlsplash Collective // SPDX-License-Identifier: GPL-3.0-only +//! Exposes the Distributor and Hub for further use. + #![feature( type_ascription, hash_set_entry, @@ -34,6 +36,8 @@ use tokio::{ use crate::interaction::shared::Shared; +/// The type of server the `listen` method of the `Server` trait will +/// implemented for. #[derive(Debug)] pub enum ServerType { AnonRoomServer, |