16 lines
213 B
Rust
Raw Normal View History

2021-11-02 12:03:56 -04:00
pub struct Config {}
impl Config {
pub fn new() -> Self {
Config {}
}
}
impl Default for Config {
fn default() -> Self {
Config::new()
}
}
2021-11-02 15:45:56 -04:00
pub unsafe fn init(_config: Config) {}