|
@@ -1,10 +1,12 @@
|
|
|
mod opts;
|
|
|
|
|
|
-use clap::Parser;
|
|
|
-use thyme::{data::{Config, Mapping},
|
|
|
- draw::Pattern,
|
|
|
- image::Image};
|
|
|
use crate::opts::Options;
|
|
|
+use clap::Parser;
|
|
|
+use thyme::{
|
|
|
+ data::{Config, Mapping},
|
|
|
+ draw::Pattern,
|
|
|
+ image::Image,
|
|
|
+};
|
|
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
|
// read the command-line options
|