fixed lib not being public
This commit is contained in:
parent
6475a85ef2
commit
1e37189866
1 changed files with 2 additions and 2 deletions
|
@ -24,8 +24,8 @@ pub enum ApplicationMessage {
|
|||
|
||||
}
|
||||
|
||||
type AppSender = Sender<ApplicationMessage>;
|
||||
type AppReceiver = Receiver<ApplicationMessage>;
|
||||
pub type AppSender = Sender<ApplicationMessage>;
|
||||
pub type AppReceiver = Receiver<ApplicationMessage>;
|
||||
|
||||
|
||||
/// Takes a ws connection string and a result oneshot
|
||||
|
|
Loading…
Reference in a new issue