diff options
author | Stuart Stock <stuart@int08h.com> | 2018-10-21 15:04:56 -0500 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2018-10-21 15:04:56 -0500 |
commit | 44e6212e3480d2f3b15f30434abc892adcf3836f (patch) | |
tree | ddd3e4a80243acb008319c8c8b76bd37fc6516f9 /src/bin/roughenough-server.rs | |
parent | b22a6f055f4578b96224ff2372a0ba0c5942a00f (diff) | |
download | roughenough-44e6212e3480d2f3b15f30434abc892adcf3836f.zip |
Add tests for envelope cypto and some enums
Diffstat (limited to 'src/bin/roughenough-server.rs')
-rw-r--r-- | src/bin/roughenough-server.rs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/bin/roughenough-server.rs b/src/bin/roughenough-server.rs index 6c6a118..c908133 100644 --- a/src/bin/roughenough-server.rs +++ b/src/bin/roughenough-server.rs @@ -16,14 +16,8 @@ //! Roughtime server //! //! # Configuration -//! The `roughenough` server is configured via a YAML config file. See the documentation -//! for [FileConfig](struct.FileConfig.html) for details. -//! -//! To run the server: -//! -//! ```bash -//! $ cargo run --release --bin server /path/to/config.file -//! ``` +//! The server has multiple ways it can be configured, see +//! [`ServerConfig`](config/trait.ServerConfig.html) for details. //! extern crate byteorder; |