aboutsummaryrefslogtreecommitdiff
path: root/src/security.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/security.rs')
-rw-r--r--src/security.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/security.rs b/src/security.rs
index a270ee9..abe114e 100644
--- a/src/security.rs
+++ b/src/security.rs
@@ -2,7 +2,9 @@
use time::OffsetDateTime;
-pub use crate::signed::Key;
+pub use signed::Key;
+
+mod signed;
/// Join a string and an expiry date together into a string.
pub fn encode_expiring_claim(claim: &str, expiry_date: OffsetDateTime) -> String {