From 83c1fa1b8bcc34350eab6139a7f961b1004975fd Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 14 Sep 2020 16:29:23 -0700 Subject: [PATCH] entry: import types from handle --- crates/wasi-common/src/entry.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/wasi-common/src/entry.rs b/crates/wasi-common/src/entry.rs index 780734f292..a162b19f42 100644 --- a/crates/wasi-common/src/entry.rs +++ b/crates/wasi-common/src/entry.rs @@ -1,5 +1,4 @@ -use crate::handle::{Handle, HandleRights}; -use crate::wasi::types::Filetype; +use crate::handle::{Filetype, Handle, HandleRights}; use crate::{Error, Result}; use std::ops::Deref; use std::path::PathBuf;