6 lines
120 B
Rust
6 lines
120 B
Rust
use iced::{Application, Settings};
|
|
use stopwatch::Stopwatch;
|
|
|
|
pub fn main() {
|
|
Stopwatch::run(Settings::default())
|
|
}
|