From e30cad33fd28c0d2546fbd70afa6834bea195f9e Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Wed, 18 May 2022 17:13:52 +0200 Subject: Move configuration into its own module --- askama_shared/src/input.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'askama_shared/src/input.rs') 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; -- cgit