Skip to content

Commit

Permalink
fixup! Fixes #19790: Use gumdrop instead of structopt
Browse files Browse the repository at this point in the history
Fixes #19790: Use gumdrop instead of structopt
  • Loading branch information
amousset committed Aug 15, 2021
1 parent bdf71ae commit 1511725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions relay/sources/relayd/src/api/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ use crate::{
api::{ApiResponse, ApiResult},
check_configuration,
output::database::ping,
Error, JobConfig,
CRATE_VERSION
Error, JobConfig, CRATE_VERSION,
};
use serde::Serialize;
use std::sync::Arc;
Expand Down
3 changes: 1 addition & 2 deletions relay/sources/relayd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ use crate::{
use anyhow::Error;
use configuration::main::PeerAuthentication;
use std::{
collections::HashMap, fs, fs::create_dir_all, path::Path, process::exit, string::ToString,
collections::HashMap, env, fs, fs::create_dir_all, path::Path, process::exit, string::ToString,
sync::Arc,
env
};
use tokio::{
signal::unix::{signal, SignalKind},
Expand Down

0 comments on commit 1511725

Please sign in to comment.