Perhaps we'll use relm4 for audio?

This commit is contained in:
Lucy 2022-03-07 15:04:14 -05:00
parent 31bb22f91b
commit 4ad01331e0
No known key found for this signature in database
GPG key ID: EBC517FAD666BBF1
3 changed files with 64 additions and 4 deletions

View file

@ -1,3 +1,13 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
#[macro_use]
extern crate relm4;
use once_cell::sync::Lazy;
use tokio::runtime::Runtime;
static RT: Lazy<Runtime> = Lazy::new(|| Runtime::new().expect("failed to build tokio runtime"));
fn main() {
println!("Hello, world!");
}