mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-04-28 14:31:23 +00:00
9 lines
120 B
Rust
9 lines
120 B
Rust
mod gui;
|
|
|
|
use std::error::Error;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn Error>> {
|
|
gui::run().await
|
|
}
|