11 lines
172 B
Rust
11 lines
172 B
Rust
#![cfg(all(unix, not(test)))]
|
|
use ctor::ctor;
|
|
|
|
use crate::injector::attach_self;
|
|
|
|
#[ctor]
|
|
fn _start() {
|
|
println!("[+] InjectionForge library injected");
|
|
attach_self();
|
|
}
|