2018-03-04 15:24:24 -05:00
|
|
|
// This file is part of Moonfire NVR, a security camera network video recorder.
|
2021-02-17 16:28:48 -05:00
|
|
|
// Copyright (C) 2018 The Moonfire NVR Authors; see AUTHORS and LICENSE.txt.
|
|
|
|
// SPDX-License-Identifier: GPL-v3.0-or-later WITH GPL-3.0-linking-exception.
|
2018-03-04 15:24:24 -05:00
|
|
|
|
|
|
|
pub mod clock;
|
2018-12-28 22:53:29 -05:00
|
|
|
mod error;
|
2018-03-30 11:53:59 -04:00
|
|
|
pub mod strutil;
|
2021-02-17 01:15:54 -05:00
|
|
|
pub mod time;
|
2018-12-28 18:30:33 -05:00
|
|
|
|
2021-02-17 01:15:54 -05:00
|
|
|
pub use crate::error::{prettify_failure, Error, ErrorKind, ResultExt};
|