interrupt_support/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 http://mozilla.org/MPL/2.0/. */
4
5#![allow(unknown_lints)]
6#![warn(rust_2018_idioms)]
7
8mod error;
9mod interruptee;
10mod shutdown;
11mod sql;
12
13pub use error::Interrupted;
14pub use interruptee::*;
15pub use shutdown::*;
16pub use sql::*;