Skip to content

Commit db3a63f

Browse files
committed
make argus the common crate
1 parent 0df9aba commit db3a63f

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

argus/src/lib.rs

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
1-
pub fn add(left: usize, right: usize) -> usize {
2-
left + right
3-
}
4-
5-
#[cfg(test)]
6-
mod tests {
7-
use super::*;
8-
9-
#[test]
10-
fn it_works() {
11-
let result = add(2, 2);
12-
assert_eq!(result, 4);
13-
}
1+
pub mod prelude {
2+
pub use argus_core::prelude::*;
3+
pub use argus_parser::parse_str;
4+
pub use argus_semantics::{BooleanSemantics, QuantitativeSemantics, Trace};
145
}

0 commit comments

Comments
 (0)