refactor: unused import, removed bin command for adaptive run

This commit is contained in:
Gabor Körber 2024-01-25 21:56:18 +01:00
parent 239875afaf
commit 7923d0a957
2 changed files with 1 additions and 5 deletions

View File

@ -1,10 +1,7 @@
default: default:
@just hello @just hello
run: run args='soundboard':
@cargo run main
bin args='':
@cargo run --bin {{args}} @cargo run --bin {{args}}
hello: hello:

View File

@ -1,6 +1,5 @@
use cpal::traits::{DeviceTrait, HostTrait}; use cpal::traits::{DeviceTrait, HostTrait};
use cpal::{Device, Host}; use cpal::{Device, Host};
use enigo::*;
use log::{debug, error, info}; use log::{debug, error, info};
use minimp3::{Decoder, Error}; use minimp3::{Decoder, Error};
use regex::Regex; use regex::Regex;