diff options
author | Stuart Stock <stuart@int08h.com> | 2020-06-20 11:08:47 -0700 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2020-06-20 11:08:47 -0700 |
commit | c70bef2f633caf61b05004e82d38802af81f460e (patch) | |
tree | 58cb895f45438a210afa129bd3e4c4a2f05ce695 | |
parent | cb8c8fefd914b2c8a466f240db7f48e8951ab0bb (diff) | |
download | roughenough-c70bef2f633caf61b05004e82d38802af81f460e.zip |
config: update module doc
-rw-r--r-- | src/config/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/mod.rs b/src/config/mod.rs index 6ce542a..c7c8ae6 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -65,6 +65,7 @@ pub const DEFAULT_STATUS_INTERVAL: Duration = Duration::from_secs(600); /// sources. See: /// * [FileConfig](struct.FileConfig.html) - configure via a YAML file /// * [EnvironmentConfig](struct.EnvironmentConfig.html) - configure via environment variables +/// * [MemoryConfig](struct.MemoryConfig.html) - in-memory configuration for testing /// pub trait ServerConfig { /// [Required] IP address or interface name to listen for client requests |