diff --git a/Justfile b/Justfile index 4dcc9f4..48bdc35 100644 --- a/Justfile +++ b/Justfile @@ -1,10 +1,7 @@ default: @just hello -run: - @cargo run main - -bin args='': +run args='soundboard': @cargo run --bin {{args}} hello: diff --git a/src/vbplay.rs b/src/vbplay.rs index 6cee62d..8438401 100644 --- a/src/vbplay.rs +++ b/src/vbplay.rs @@ -1,6 +1,5 @@ use cpal::traits::{DeviceTrait, HostTrait}; use cpal::{Device, Host}; -use enigo::*; use log::{debug, error, info}; use minimp3::{Decoder, Error}; use regex::Regex;