otter_nodejs_tests/jstest.rs
1// Copyright 2020-2021 Ian Jackson and contributors to Otter
2// SPDX-License-Identifier: AGPL-3.0-or-later
3// There is NO WARRANTY.
4
5//! Otter game system (part thereeof)
6//!
7//! <https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/README.html>
8//!
9//! This crate is intended for use only by other parts of Otter.
10
11#![allow(clippy::or_fun_call)]
12#![allow(clippy::unnecessary_operation)] // trips on #[throws(Explode)]
13
14pub use otter::crates::*;
15pub use otter::prelude::*;
16
17pub use otter_api_tests::Explode;
18
19pub use indexmap::IndexMap;
20pub use indexmap::IndexSet;
21pub use structopt::StructOpt;