1//! A Configuration for the App.
23/// 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.
7pub timestamp_range: i64,
8}