audiot_core 0.2.0

Library that helps build the search database through the CLI, and eventually can be used to read data from that same database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod artist_credit;
mod artist_reference;
mod genre_reference;
mod relation;
mod release;
mod release_group;
mod tag;

pub use artist_credit::ArtistCredit;
pub use artist_reference::ArtistReference;
pub use genre_reference::GenreReference;
pub use relation::{Relation, Url};
pub use release::Release;
pub use release_group::{ReleaseGroup, ReleaseGroupReference, SearchReleaseGroup};
pub use tag::Tag;