-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
25 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
pub mod app; | ||
pub use app::MainWindow; | ||
pub mod stremio_wevbiew; | ||
pub mod stremio_player; | ||
pub mod stremio_server; | ||
pub mod ipc; | ||
pub use ipc::RPCResponse; | ||
pub mod systray; | ||
pub mod splash; | ||
pub mod window_helper; | ||
pub mod named_pipe; | ||
pub use named_pipe::{PipeClient, PipeServer}; | ||
pub mod app; | ||
pub use app::MainWindow; | ||
pub mod ipc; | ||
pub mod stremio_player; | ||
pub mod stremio_server; | ||
pub mod stremio_wevbiew; | ||
pub use ipc::RPCResponse; | ||
pub mod named_pipe; | ||
pub mod splash; | ||
pub mod systray; | ||
pub mod window_helper; | ||
pub use named_pipe::{PipeClient, PipeServer}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
pub mod player; | ||
pub use player::Player; | ||
pub mod communication; | ||
pub use communication::{ | ||
CmdVal, InMsg, InMsgArgs, InMsgFn, PlayerEnded, | ||
PlayerEvent, PlayerProprChange, PlayerResponse, PropKey, PropVal, | ||
}; | ||
#[cfg(test)] | ||
mod communication_tests; | ||
pub mod player; | ||
pub use player::Player; | ||
pub mod communication; | ||
pub use communication::{ | ||
CmdVal, InMsg, InMsgArgs, InMsgFn, PlayerEnded, PlayerEvent, PlayerProprChange, PlayerResponse, | ||
PropKey, PropVal, | ||
}; | ||
#[cfg(test)] | ||
mod communication_tests; |