12 lines
153 B
Rust
12 lines
153 B
Rust
#![cfg_attr(test, allow(dead_code))]
|
|
|
|
pub struct Handler;
|
|
|
|
impl Handler {
|
|
pub fn new() -> Handler {
|
|
Handler
|
|
}
|
|
}
|
|
|
|
pub unsafe fn init() {}
|