Rename net/fetch/request.rs to net/fetch/methods.rs and move Request to net_traits

This commit is contained in:
Keith Yeung 2016-01-17 23:34:41 -05:00
parent eb7b9309dd
commit a53661f6c8
5 changed files with 157 additions and 147 deletions

View file

@ -46,6 +46,6 @@ pub mod websocket_loader;
pub mod fetch {
#![allow(dead_code, unused)] // XXXManishearth this is only temporary until the Fetch mod starts being used
pub mod cors_cache;
pub mod request;
pub mod methods;
pub mod response;
}