diff options
author | René Kijewski <kijewski@library.vetmed.fu-berlin.de> | 2022-03-23 19:07:52 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2022-03-23 19:37:10 +0100 |
commit | b14982f97ffd20039286171d56e6fcfab21f56bc (patch) | |
tree | bf31786b87cf4c13a9ac76e9466409901832b9c8 /askama_shared/src/lib.rs | |
parent | 62019c298f8d01043be2b06cfd760b16a153bbaf (diff) | |
download | askama-b14982f97ffd20039286171d56e6fcfab21f56bc.tar.gz askama-b14982f97ffd20039286171d56e6fcfab21f56bc.tar.bz2 askama-b14982f97ffd20039286171d56e6fcfab21f56bc.zip |
Merge derive.rs into generator.rs
Diffstat (limited to '')
-rw-r--r-- | askama_shared/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/askama_shared/src/lib.rs b/askama_shared/src/lib.rs index 61ddb00..81500e1 100644 --- a/askama_shared/src/lib.rs +++ b/askama_shared/src/lib.rs @@ -13,11 +13,10 @@ use proc_macro2::{Span, TokenStream}; #[cfg(feature = "serde")] use serde::Deserialize; -pub use crate::derive::derive_template; +pub use crate::generator::derive_template; pub use crate::input::extension_to_mime_type; pub use askama_escape::MarkupDisplay; -mod derive; mod error; pub use crate::error::{Error, Result}; pub mod filters; |