Stubs for fetch module

This commit is contained in:
Manish Goregaokar 2014-07-30 18:46:25 +05:30
parent 4da88f0ecc
commit c80b8af8cc
3 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,5 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
pub struct Request;

View file

@ -0,0 +1,5 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
pub struct Response;

View file

@ -39,3 +39,7 @@ pub mod image_cache_task;
pub mod local_image_cache; pub mod local_image_cache;
pub mod resource_task; pub mod resource_task;
pub mod fetch {
pub mod request;
pub mod response;
}