--features sound (#63)

to enable `sound` notification for local builds only. Needed to avoid
endless issues by building the app for different platforms. Sound
support can be hard.
This commit is contained in:
Jens Krause
2025-02-04 17:39:50 +01:00
committed by GitHub
parent a54b1b409a
commit 7ff167368d
5 changed files with 33 additions and 9 deletions

View File

@@ -8,12 +8,14 @@ mod logging;
mod args;
mod duration;
mod sound;
mod storage;
mod terminal;
mod utils;
mod widgets;
#[cfg(feature = "sound")]
mod sound;
use app::{App, FromAppArgs};
use args::Args;
use clap::Parser;