aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared/src/input.rs
diff options
context:
space:
mode:
authorLibravatar René Kijewski <kijewski@library.vetmed.fu-berlin.de>2022-05-18 17:13:52 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2022-05-23 11:14:22 +0200
commite30cad33fd28c0d2546fbd70afa6834bea195f9e (patch)
tree90b2d331aa419077b506b4d8dfdc5b0ccfe72029 /askama_shared/src/input.rs
parentc78c1dfc25a8bbc6a1ceffbce31f102e9afc8007 (diff)
downloadaskama-e30cad33fd28c0d2546fbd70afa6834bea195f9e.tar.gz
askama-e30cad33fd28c0d2546fbd70afa6834bea195f9e.tar.bz2
askama-e30cad33fd28c0d2546fbd70afa6834bea195f9e.zip
Move configuration into its own module
Diffstat (limited to 'askama_shared/src/input.rs')
-rw-r--r--askama_shared/src/input.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/askama_shared/src/input.rs b/askama_shared/src/input.rs
index 350fc01..1f367fd 100644
--- a/askama_shared/src/input.rs
+++ b/askama_shared/src/input.rs
@@ -1,5 +1,6 @@
+use crate::config::{Config, Syntax};
use crate::generator::TemplateArgs;
-use crate::{CompileError, Config, Syntax};
+use crate::CompileError;
use std::path::{Path, PathBuf};
use std::str::FromStr;