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

Commit

Permalink
use updated import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
gabbifish committed Aug 19, 2019
1 parent fac80b6 commit ffc36c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/commands/kv/delete_bulk.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extern crate base64;

use cloudflare::apiclient::ApiClient;
use cloudflare::framework::apiclient::ApiClient;
use percent_encoding::{percent_encode, PATH_SEGMENT_ENCODE_SET};
use walkdir::WalkDir;

Expand All @@ -10,7 +10,7 @@ use std::fs::metadata;
use std::path::Path;

use failure::bail;
use cloudflare::workerskv::delete_bulk::DeleteBulk;
use cloudflare::endpoints::workerskv::delete_bulk::DeleteBulk;

use crate::terminal::message;

Expand Down
4 changes: 2 additions & 2 deletions src/commands/kv/delete_key.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use cloudflare::apiclient::ApiClient;
use cloudflare::framework::apiclient::ApiClient;

use cloudflare::workerskv::delete_key::DeleteKey;
use cloudflare::endpoints::workerskv::delete_key::DeleteKey;

use crate::terminal::message;

Expand Down

0 comments on commit ffc36c7

Please sign in to comment.