Formatting

This commit is contained in:
Antoine Gersant 2016-09-21 23:32:30 -07:00
parent b62e89f0c9
commit d59a2a3ae7

View file

@ -2,8 +2,8 @@ use std::time;
use std::thread;
pub fn run() {
println!("Starting up UI (headless)");
loop {
thread::sleep(time::Duration::from_secs(10));
}
println!("Starting up UI (headless)");
loop {
thread::sleep(time::Duration::from_secs(10));
}
}