summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/client/app/src/net/mod.rs
blob: d9951d7fc3f2e923705d66d164235e06f2549d1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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 mod legacy_telemetry;
mod libcurl;
pub mod report;

#[cfg(test)]
pub fn can_load_libcurl() -> bool {
    libcurl::load().is_ok()
}