diff options
| author | Jakub Panek <me@panekj.dev> | 2022-04-28 17:53:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-28 18:53:59 +0100 |
| commit | 93ab4e7842ac3c3a37e8d423ae57ef3e7d151b7b (patch) | |
| tree | c910b1bb047a540c361f6cb6f8e403f1b83b925a /atuin-server/src/settings.rs | |
| parent | Bump axum from 0.5.3 to 0.5.4 (#355) (diff) | |
| download | atuin-93ab4e7842ac3c3a37e8d423ae57ef3e7d151b7b.zip | |
ignore JetBrains IDEs, tidy-up imports (#348)
* ignore JB IDEs
* tidy-up imports
* add rustfmt config
Diffstat (limited to '')
| -rw-r--r-- | atuin-server/src/settings.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/atuin-server/src/settings.rs b/atuin-server/src/settings.rs index 6f4d36b4..8e8961e9 100644 --- a/atuin-server/src/settings.rs +++ b/atuin-server/src/settings.rs @@ -1,10 +1,9 @@ -use fs_err::{create_dir_all, File}; -use serde::{Deserialize, Serialize}; -use std::io::prelude::*; -use std::path::PathBuf; +use std::{io::prelude::*, path::PathBuf}; use config::{Config, Environment, File as ConfigFile, FileFormat}; use eyre::{eyre, Result}; +use fs_err::{create_dir_all, File}; +use serde::{Deserialize, Serialize}; pub const HISTORY_PAGE_SIZE: i64 = 100; |
