pwsp 1.7.2

PWSP lets you play audio files through your microphone. Has both CLI and GUI clients.
1
2
3
4
5
6
7
8
mod gui;

use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    gui::run().await
}