1
2
3
4
5
6
7
8
//! A Configuration for the App.

/// The configuration to validate signature.
#[derive(Clone, Debug)]
pub struct Config {
    /// The range to allow the difference between the timestamp in the request and the timestamp in the server.
    pub timestamp_range: i64,
}