summaryrefslogtreecommitdiffstats
path: root/examples/stopwatch/src/main.rs
blob: adcdffe45634daf19c44b9c9994d8a398cdb8a8b (plain) (blame)
1
2
3
4
5
6
use iced::{Application, Settings};
use stopwatch::Stopwatch;

pub fn main() {
    Stopwatch::run(Settings::default())
}