blob: a2d13d11849e790a2addf31f5b62a00ebaebb967 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | pub struct Handler;
impl Handler {
    pub unsafe fn new() -> Handler {
        Handler
    }
}
#[cfg_attr(test, allow(dead_code))]
pub unsafe fn init() {}
pub unsafe fn cleanup() {}
 |