oxide_httpmock/lib.rs
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 https://mozilla.org/MPL/2.0/.
4
5// Copyright 2023 Oxide Computer Company
6
7#![forbid(unsafe_code)]
8#![doc = include_str!("../README.md")]
9
10#[allow(clippy::unnecessary_to_owned)]
11#[allow(clippy::to_string_in_format_args)]
12mod generated_httpmock;
13
14pub use generated_httpmock::*;