16 lines
213 B
Rust
16 lines
213 B
Rust
pub struct Config {}
|
|
|
|
impl Config {
|
|
pub fn new() -> Self {
|
|
Config {}
|
|
}
|
|
}
|
|
|
|
impl Default for Config {
|
|
fn default() -> Self {
|
|
Config::new()
|
|
}
|
|
}
|
|
|
|
pub unsafe fn init(_config: Config) {}
|