flix_fs/scanner/
mod.rs

1//! This module contains all of the filesystem scanner modules
2//!
3//! The most common scanner to use is [generic::Scanner] which will
4//! automatically detect and use the appropriate scanner.
5
6pub mod library;
7
8pub mod generic;
9
10pub mod collection;
11
12pub mod movie;
13
14pub mod episode;
15pub mod season;
16pub mod show;