server: cargo fmt

pull/186/head
Jake McGinty 2022-01-11 01:54:59 -06:00
parent 5c72592069
commit 0423e78683
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,5 @@
use anyhow::{anyhow, bail};
use clap::{AppSettings, Args, IntoApp, Parser, Subcommand};
use colored::*;
use dialoguer::{Confirm, Input};
use hostsfile::HostsBuilder;
@ -20,7 +21,6 @@ use std::{
thread,
time::{Duration, Instant},
};
use clap::{AppSettings, IntoApp, Parser, Subcommand, Args};
use wireguard_control::{Device, DeviceUpdate, InterfaceName, PeerConfigBuilder, PeerInfo};
mod data_store;

View File

@ -1,6 +1,6 @@
use crate::*;
use anyhow::anyhow;
use clap::{Parser};
use clap::Parser;
use db::DatabaseCidr;
use dialoguer::{theme::ColorfulTheme, Input};
use indoc::printdoc;