musicus/src/selectors/mod.rs

19 lines
267 B
Rust
Raw Normal View History

2020-12-02 15:41:19 +01:00
pub mod ensemble;
pub use ensemble::*;
pub mod instrument;
pub use instrument::*;
pub mod person;
pub use person::*;
2021-02-03 14:09:17 +01:00
// TODO: Readd a better version of these.
//
// pub mod recording;
// pub use recording::*;
//
// pub mod work;
// pub use work::*;
2020-12-02 15:41:19 +01:00
2021-02-03 14:09:17 +01:00
mod selector;