Add missing module descriptions

This commit is contained in:
Greg Fitzgerald 2018-06-06 17:36:54 -06:00
parent 3b8b2e030a
commit f0d1fdfb46
3 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,5 @@
//! The `data_replicator` module implements the replication threads.
use crdt;
use packet;
use result::Result;

View File

@ -1,3 +1,6 @@
//! The `logger` module provides a setup function for `env_logger`. Its only function,
//! `setup()` may be called multiple times.
use std::sync::{Once, ONCE_INIT};
extern crate env_logger;

View File

@ -1,3 +1,4 @@
//! The `timing` module provides std::time utility functions.
use std::time::Duration;
use std::time::{SystemTime, UNIX_EPOCH};