You've already forked flix
15 lines
193 B
Rust
15 lines
193 B
Rust
//! flix-fs provides filesystem scanners for flix media
|
|
|
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
|
|
|
mod macros;
|
|
|
|
mod error;
|
|
|
|
pub use error::Error;
|
|
|
|
mod item;
|
|
pub use item::Item;
|
|
|
|
pub mod scanner;
|