From 34d30707ee9ab6431463ac065c89fd5a9871d93e Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Sat, 28 Sep 2024 16:28:17 -0700 Subject: [PATCH] feat: Add a feature that isn't really a feature (#44) --- sdk/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/src/lib.rs b/sdk/src/lib.rs index e6b14f9..687e31a 100644 --- a/sdk/src/lib.rs +++ b/sdk/src/lib.rs @@ -178,3 +178,7 @@ pub(crate) mod trust_handler; pub(crate) mod utils; pub(crate) use utils::{cbor_types, hash_utils}; pub(crate) mod validator; + +pub fn so_called_feature() { + println!("Not really a feature"); +}