mirror of
https://github.com/itsKaynine/electron-injector.git
synced 2026-04-03 09:46:32 +02:00
11 lines
200 B
Rust
11 lines
200 B
Rust
use electron_injector::injector::Injector;
|
|
|
|
fn main() {
|
|
// Setup logging
|
|
pretty_env_logger::init();
|
|
|
|
// Run the injector
|
|
let injector = Injector::new();
|
|
injector.run().unwrap();
|
|
}
|