aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/input.rs
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2023-07-01 15:38:34 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2023-07-31 10:27:15 +0200
commit8b184511edff62bd3786be3f5d62c1965430278b (patch)
tree340209532d26c9f177ba21fd1e444ea6f24f37a7 /askama_derive/src/input.rs
parentac8de6260e34c7dc7f7f2228e832d1860a31707d (diff)
downloadaskama-8b184511edff62bd3786be3f5d62c1965430278b.tar.gz
askama-8b184511edff62bd3786be3f5d62c1965430278b.tar.bz2
askama-8b184511edff62bd3786be3f5d62c1965430278b.zip
derive: move Syntax into parser module
Diffstat (limited to 'askama_derive/src/input.rs')
-rw-r--r--askama_derive/src/input.rs3
1 files changed, 2 insertions, 1 deletions
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};