-
-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Populate dashboard lazily; add wasm wrapper code
- Loading branch information
Showing
8 changed files
with
299 additions
and
175 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
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,21 +1,25 @@ | ||
mod about; | ||
mod connections; | ||
mod debug; | ||
mod installation; | ||
mod logs; | ||
mod notifications; | ||
mod settings; | ||
mod settings_controls; | ||
mod setup_wizard; | ||
mod statistics; | ||
|
||
#[cfg(not(target_arch = "wasm32"))] | ||
mod installation; | ||
|
||
pub use about::*; | ||
pub use connections::*; | ||
pub use debug::*; | ||
pub use installation::*; | ||
pub use logs::*; | ||
pub use notifications::*; | ||
pub use settings::*; | ||
pub use settings_controls::*; | ||
pub use setup_wizard::*; | ||
pub use statistics::*; | ||
|
||
#[cfg(not(target_arch = "wasm32"))] | ||
pub use installation::*; |
Oops, something went wrong.