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 7aa6b6b commit a010cc8Copy full SHA for a010cc8
code0-flow/src/lib.rs
@@ -1,14 +1,5 @@
1
-pub fn add(left: u64, right: u64) -> u64 {
2
- left + right
3
-}
+#[cfg(feature = "flow_store")]
+pub mod flow_store;
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
- }
14
+#[cfg(feature = "flow_queue")]
+pub mod flow_queue;
0 commit comments