//! 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,
}