7 lines
70 B
Rust
7 lines
70 B
Rust
use ctor::ctor;
|
|
|
|
#[ctor]
|
|
fn init_logger() {
|
|
env_logger::init();
|
|
}
|