mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-26 07:05:56 -05:00
64ca096ff3
* fully stop using ancient `failure` crate in favor of own error type * set an `ErrorKind` on everything
13 lines
406 B
Rust
13 lines
406 B
Rust
// This file is part of Moonfire NVR, a security camera network video recorder.
|
|
// Copyright (C) 2021 The Moonfire NVR Authors; see AUTHORS and LICENSE.txt.
|
|
// SPDX-License-Identifier: GPL-v3.0-or-later WITH GPL-3.0-linking-exception.
|
|
|
|
pub mod clock;
|
|
pub mod error;
|
|
pub mod shutdown;
|
|
pub mod strutil;
|
|
pub mod time;
|
|
pub mod tracing_setup;
|
|
|
|
pub use crate::error::{Error, ErrorBuilder, ErrorKind, ResultExt};
|