Bug 1601859 - Vendor cubeb-pulse-rs. r=kinetik
[gecko.git] / remote / lib.rs
blobc22fd4ceb48c5a5128093b26bf0e92ac134abcb4
1 // This Source Code Form is subject to the terms of the Mozilla Public
2 // License, v. 2.0. If a copy of the MPL was not distributed with this
3 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 extern crate failure;
6 extern crate http;
7 extern crate libc;
8 extern crate log;
9 extern crate nserror;
10 extern crate nsstring;
11 extern crate xpcom;
13 mod error;
14 mod remote_agent;
15 mod startup;
17 pub use crate::error::RemoteAgentError;
18 pub use crate::remote_agent::{RemoteAgent, RemoteAgentResult, DEFAULT_HOST, DEFAULT_PORT};