diff options
author | René Kijewski <rene.kijewski@fu-berlin.de> | 2023-08-01 03:18:10 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-08-01 13:04:41 +0200 |
commit | cd075630eab578a66afec6000ce0f266e6b281e8 (patch) | |
tree | 8effbf0c2ab4ff2fb6697ec774180bff6c5c5141 /askama_parser/src/lib.rs | |
parent | 222c42917aa19162562b8a9c35350e3e992f9823 (diff) | |
download | askama-cd075630eab578a66afec6000ce0f266e6b281e8.tar.gz askama-cd075630eab578a66afec6000ce0f266e6b281e8.tar.bz2 askama-cd075630eab578a66afec6000ce0f266e6b281e8.zip |
parser: add type for `Node::Import`
Diffstat (limited to 'askama_parser/src/lib.rs')
-rw-r--r-- | askama_parser/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_parser/src/lib.rs b/askama_parser/src/lib.rs index 43d953d..0f796ae 100644 --- a/askama_parser/src/lib.rs +++ b/askama_parser/src/lib.rs @@ -15,7 +15,7 @@ use nom::sequence::{delimited, pair, tuple}; use nom::{error_position, AsChar, IResult, InputTakeAtPosition}; pub use self::expr::Expr; -pub use self::node::{Cond, CondTest, Loop, Macro, Node, Target, When, Whitespace, Ws}; +pub use self::node::{Cond, CondTest, Import, Loop, Macro, Node, Target, When, Whitespace, Ws}; mod expr; mod node; |