Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
Use existing get_wrangler_cache function
Browse files Browse the repository at this point in the history
  • Loading branch information
hffmnn committed Apr 8, 2019
1 parent 29c6ed8 commit e87512f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
use std::str::FromStr;

use binary_install::Cache;
use cache::get_wrangler_cache;
use clap::{App, Arg, SubCommand};
use commands::HTTPMethod;
use settings::Settings;

mod cache;
mod commands;
mod install;
mod settings;

fn main() -> Result<(), failure::Error> {
env_logger::init();
let cache = Cache::new("wrangler")?;
let cache = get_wrangler_cache()?;

let matches = App::new("👷‍♀️🧡☁️ ✨ wrangler")
.version("0.1.0")
Expand Down

0 comments on commit e87512f

Please sign in to comment.