summaryrefslogtreecommitdiff
path: root/protocol/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/src/lib.rs')
-rw-r--r--protocol/src/lib.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/protocol/src/lib.rs b/protocol/src/lib.rs
index b10e7e1..41268a9 100644
--- a/protocol/src/lib.rs
+++ b/protocol/src/lib.rs
@@ -1,5 +1,7 @@
use serde::{Deserialize, Serialize};
use uuid::Uuid;
+pub mod card;
+pub mod bridge_engine;
#[derive(Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct UserInfo {
@@ -16,3 +18,11 @@ pub struct Table {
pub struct TableView {
pub m: String,
}
+
+#[cfg(test)]
+mod tests {
+ pub fn test_setup() {
+ dotenv::dotenv().ok();
+ let _ = env_logger::builder().is_test(true).try_init();
+ }
+}