From 8b184511edff62bd3786be3f5d62c1965430278b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sat, 1 Jul 2023 15:38:34 +0200 Subject: derive: move Syntax into parser module --- askama_derive/src/input.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'askama_derive/src/input.rs') diff --git a/askama_derive/src/input.rs b/askama_derive/src/input.rs index 47d51bd..be425a3 100644 --- a/askama_derive/src/input.rs +++ b/askama_derive/src/input.rs @@ -1,5 +1,6 @@ -use crate::config::{Config, Syntax}; +use crate::config::Config; use crate::generator::TemplateArgs; +use crate::parser::Syntax; use crate::CompileError; use std::path::{Path, PathBuf}; -- cgit