Skip to content

Commit

Permalink
update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bartvanbenthem committed Jul 4, 2023
1 parent 9fca2d8 commit c5c0c91
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use std::collections::BTreeMap;
use std::fs;
use serde::{Deserialize, Serialize};
use serde_json::{Value};
use serde_yaml;
use std::env;
use std::error::Error;
use std::io::{self, Read, Write};
use std::process;

use serde::{Deserialize, Serialize};
use serde_json::{Value};
use serde_yaml;
use handlebars::Handlebars;
use clap::{App, Arg};

Expand All @@ -21,7 +21,6 @@ struct Config {
variables_file: String,
}


fn main() -> Result<(), Box<dyn Error>> {
// Get command-line arguments
let config = get_args().unwrap();
Expand Down

0 comments on commit c5c0c91

Please sign in to comment.