Clean up code a bit; remove unused dependencies

This commit is contained in:
Lucy 2022-03-16 16:02:22 -04:00
parent 57c185acb1
commit efba49688f
No known key found for this signature in database
GPG key ID: EBC517FAD666BBF1
4 changed files with 19 additions and 26 deletions

View file

@ -5,11 +5,7 @@ extern crate relm4;
mod app;
use once_cell::sync::Lazy;
use relm4::RelmApp;
use tokio::runtime::Runtime;
static RT: Lazy<Runtime> = Lazy::new(|| Runtime::new().expect("failed to build tokio runtime"));
fn main() {
RelmApp::<app::App>::new("com.system76.cosmic.applets.audio").run(());