//! Binary entry point of the `coveralls` command line tool.
//!
//! It initializes the logger and delegates the whole work to [`coveralls::work`], exiting with a
//! non-zero status code when it fails.
use work;
use error;
use exit;
/// Initialize logging and run the [`coveralls::work`] workflow, exiting with `1` on error.