-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
class FlooedApi { | ||
ws = null; | ||
version = null; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
use webui_rs::webui::bindgen::*; | ||
Check failure on line 1 in src/compat/firefox.rs
|
||
|
||
pub unsafe fn move_firefox_extension() { | ||
// Take the extension file (should be beside the binary) | ||
let ext = std::env::current_dir().unwrap().join("ext").join("mv2.xpi"); | ||
Check failure on line 5 in src/compat/firefox.rs
|
||
// get the firefox profile path | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod firefox; | ||
Check warning on line 1 in src/compat/mod.rs
|