This MR scans the filesystem in the specified directory. It assembles a list of files from the scan and then presents that entire list to the UI. The UI then renders it. Resolves: https://www.pivotaltracker.com/story/show/184466979 Co-authored-by: Savanni D'Gerinel <savanni@luminescent-dreams.com> Reviewed-on: savanni/tools#24
27 lines
522 B
Rust
27 lines
522 B
Rust
pub mod audio;
|
|
pub mod core;
|
|
pub mod database;
|
|
pub mod music_scanner;
|
|
use database::DatabaseError;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error, PartialEq)]
|
|
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, PartialEq)]
|
|
pub enum FatalError {
|
|
#[error("Unexpected error")]
|
|
UnexpectedError,
|
|
}
|
|
|
|
impl flow::FatalError for FatalError {}
|