qzn3t_tuner 0.2.7

A tuner for musical instruments
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright (c) 2025 Worik Turei Stanton
// License: GPL-3.0
use clap::Parser;

use tuner::TunerArgs;
use tuner::inner_main;
fn main() {
    let args = TunerArgs::parse();
    inner_main(&args);
}