15 lines
135 B
Rust
15 lines
135 B
Rust
|
|
pub struct System {
|
|
|
|
}
|
|
|
|
impl System {
|
|
|
|
pub fn new() -> System {
|
|
System{}
|
|
}
|
|
|
|
pub fn detection(&self) {
|
|
|
|
}
|
|
} |