Renamed files. Clippy is happy

This commit is contained in:
Vladimir Borisov 2021-07-26 14:07:04 +03:00
parent a03e3964c0
commit 16ec0a9b67
No known key found for this signature in database
GPG key ID: F9A584BE4FCB6603
8 changed files with 8 additions and 8 deletions

View file

@ -1,5 +1,5 @@
pub mod stremio_app;
pub use stremio_app::MainWindow;
pub mod app;
pub use app::MainWindow;
pub mod stremio_wevbiew;
pub use stremio_wevbiew::WebView;
pub mod stremio_player;

View file

@ -1,2 +1,2 @@
pub mod stremio_player;
pub use stremio_player::Player;
pub mod player;
pub use player::Player;

View file

@ -1,2 +1,2 @@
pub mod stremio_server;
pub use stremio_server::StremioServer;
pub mod server;
pub use server::StremioServer;

View file

@ -1,2 +1,2 @@
pub mod stremio_wevbiew;
pub use stremio_wevbiew::WebView;
pub mod wevbiew;
pub use wevbiew::WebView;