From 1e37189866720e8d99b22492a78f47d220742831 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Mon, 19 Aug 2024 19:37:56 -0700 Subject: [PATCH] fixed lib not being public --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index a72c20a..ef3b798 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -24,8 +24,8 @@ pub enum ApplicationMessage { } -type AppSender = Sender; -type AppReceiver = Receiver; +pub type AppSender = Sender; +pub type AppReceiver = Receiver; /// Takes a ws connection string and a result oneshot