We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633766a commit 1675fe1Copy full SHA for 1675fe1
src/lib.rs
@@ -1,21 +1,10 @@
1
-pub use cmd_lib_core;
2
-pub use cmd_lib_macros;
+use cmd_lib_core;
+use cmd_lib_macros;
3
4
-#[macro_export]
5
-macro_rules! run_cmd {
6
- ($($cur:tt)*) => {{
7
- use $crate::cmd_lib_core;
8
- $crate::cmd_lib_macros::run_cmd!($($cur)*)
9
- }};
10
-}
11
-
12
13
-macro_rules! run_fun {
14
15
16
- $crate::cmd_lib_macros::run_fun!($($cur)*)
17
18
+pub use cmd_lib_macros::{
+ run_cmd,
+ run_fun,
+};
19
20
pub use cmd_lib_core::{
21
run_cmd,
0 commit comments