pict-rs/src/config.rs

13 lines
229 B
Rust
Raw Normal View History

2022-03-28 00:10:06 +00:00
mod commandline;
mod defaults;
mod file;
mod primitives;
2020-06-07 00:54:06 +00:00
2021-10-23 04:48:56 +00:00
use crate::magick::ValidInputType;
2022-03-28 00:10:06 +00:00
pub(crate) use file::ConfigFile as Configuration;
2022-03-28 00:10:06 +00:00
pub(crate) fn configure() -> anyhow::Result<Configuration> {
unimplemented!()
2020-06-07 00:54:06 +00:00
}