1
2
3
4
5
6
7
8
pub mod indexing;
pub mod pubchem;
pub mod search;

pub mod prelude {
    pub use crate::indexing::*;
    pub use clap::{Arg, ArgMatches, Command};
}