1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2021 - 2021, Rupansh Sekar and the Kilogramme (TBD) contributors
// SPDX-License-Identifier: MPL-2.0
//! time constants

/// seconds in a day
pub const DAY_SECS: u64 = 86400;

/// seconds in an hour
pub const HOUR_SECS: u64 = 3600;

/// seconds in a minute
pub const MINUTE_SECS: u64 = 60;