The very beginnings, with a very basic application architecture, for a music playing server on a headless system. This also adds my new Flow library, which I'll be wanting to use in a variety of places. Co-authored-by: Savanni D'Gerinel <savanni@luminescent-dreams.com> Reviewed-on: savanni/tools#17
26 lines
477 B
Rust
26 lines
477 B
Rust
pub mod audio;
|
|
pub mod core;
|
|
pub mod database;
|
|
use database::DatabaseError;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum Error {
|
|
#[error("Database error: {0}")]
|
|
DatabaseError(DatabaseError),
|
|
}
|
|
|
|
impl From<DatabaseError> for Error {
|
|
fn from(err: DatabaseError) -> Self {
|
|
Self::DatabaseError(err)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum FatalError {
|
|
#[error("Unexpected error")]
|
|
UnexpectedError,
|
|
}
|
|
|
|
impl flow::FatalError for FatalError {}
|