diff options
Diffstat (limited to 'src/generator')
| -rw-r--r-- | src/generator/html.rs | 2 | ||||
| -rw-r--r-- | src/generator/rss.rs | 2 | ||||
| -rw-r--r-- | src/generator/txt.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/generator/html.rs b/src/generator/html.rs index 7af4c73..ade3eee 100644 --- a/src/generator/html.rs +++ b/src/generator/html.rs @@ -1,4 +1,4 @@ -use crate::template::{find, parse, Context}; +use crate::template::{Context, find, parse}; use std::fs::write; use std::io::{Error, ErrorKind::Other, Result}; use std::path::Path; diff --git a/src/generator/rss.rs b/src/generator/rss.rs index 0e28777..a36ad14 100644 --- a/src/generator/rss.rs +++ b/src/generator/rss.rs @@ -1,4 +1,4 @@ -use crate::template::{find, parse, Context}; +use crate::template::{Context, find, parse}; use std::fs::write; use std::io::{Error, ErrorKind::Other, Result}; use std::path::Path; diff --git a/src/generator/txt.rs b/src/generator/txt.rs index d35720d..cc590a4 100644 --- a/src/generator/txt.rs +++ b/src/generator/txt.rs @@ -1,4 +1,4 @@ -use crate::template::{find, parse, Context}; +use crate::template::{Context, find, parse}; use std::fs::write; use std::io::{Error, ErrorKind::Other, Result}; use std::path::Path; |