From d4724b4734776d32fb86cd3c932e18fc41b68316 Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Thu, 11 Nov 2021 20:29:55 -0300 Subject: Start porting Brigadier to Rust --- tests/common/mod.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/common/mod.rs (limited to 'tests/common/mod.rs') diff --git a/tests/common/mod.rs b/tests/common/mod.rs new file mode 100644 index 0000000..6760da1 --- /dev/null +++ b/tests/common/mod.rs @@ -0,0 +1,12 @@ +// Copyright (c) 2021 Soni L. + +// see rationale in tests/*.rs +#![warn(non_snake_case)] + +pub mod errorfunc; +pub mod errorpanic; + +pub use self::errorfunc::ErrorCall; +pub use self::errorfunc::ErrorFunc; +pub use self::errorfunc::ErrorType; +pub use self::errorpanic::ErrorPanic; -- cgit 1.4.1