alsaseq 0.8.0

API binding for alsaseq library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT

mod user_client;

/// For convenience to provide traits and their blanket implementations to write subclass.
pub mod prelude {
    pub use super::user_client::*;
}

use {
    super::*,
    glib::{subclass::prelude::*, translate::*},
};