lavende-core 0.1.10

Core in-process Discord voice connection and playback engine
Documentation
1
2
3
4
5
6
7
8
use thiserror::Error;
#[derive(Debug, Error)]
pub enum AudioError {
    #[error("Decoder finished")]
    DecoderFinished,
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),
}