sfr_core/
config.rs

1//! A Configuration for the App.
2
3/// The configuration to validate signature.
4#[derive(Clone, Debug)]
5pub struct Config {
6    /// The range to allow the difference between the timestamp in the request and the timestamp in the server.
7    pub timestamp_range: i64,
8}