fixed lib not being public

This commit is contained in:
Nickiel12 2024-08-19 19:37:56 -07:00
parent 6475a85ef2
commit 1e37189866

View file

@ -24,8 +24,8 @@ pub enum ApplicationMessage {
} }
type AppSender = Sender<ApplicationMessage>; pub type AppSender = Sender<ApplicationMessage>;
type AppReceiver = Receiver<ApplicationMessage>; pub type AppReceiver = Receiver<ApplicationMessage>;
/// Takes a ws connection string and a result oneshot /// Takes a ws connection string and a result oneshot