fix bad format

This commit is contained in:
Kaan Barmore-Genç 2022-08-22 22:15:28 -04:00
parent f47b3f09e7
commit 0e643bc9c2
Signed by: kaan
GPG key ID: B2E280771CD62FCF
5 changed files with 15 additions and 14 deletions

View file

@ -13,7 +13,9 @@ pub struct Entry {
ttl: Option<u32>,
}
fn default_ttl() -> u32 { return 300; }
fn default_ttl() -> u32 {
return 300;
}
#[derive(Deserialize, Debug)]
pub struct Config {

View file

@ -7,5 +7,4 @@ pub struct Opts {
/// The path to the configuration file.
#[clap(long)]
pub config: Option<String>,
}