cargo fmt --all

This commit is contained in:
Kazuminn
2020-09-25 21:46:40 +09:00
parent 8b3ce3e071
commit d42276ada9
8 changed files with 69 additions and 78 deletions

View File

@@ -1,15 +1,9 @@
pub struct System {
}
pub struct System {}
impl System {
pub fn new() -> System {
System{}
System {}
}
pub fn detection(&self) {
}
}
pub fn detection(&self) {}
}