File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
pub mod file_types;
2
- pub mod templating ;
2
+ pub mod template ;
3
3
4
4
pub const ENV_VAR_PATTERN_START : & str = "${env:" ;
5
5
pub const ENV_VAR_PATTERN_END : & str = "}" ;
Original file line number Diff line number Diff line change 1
1
use clap:: Parser ;
2
- use config_utils:: templating :: { self , template} ;
2
+ use config_utils:: template :: { self , template} ;
3
3
use snafu:: { ResultExt , Snafu } ;
4
4
5
5
use cli_args:: { Args , Command } ;
@@ -9,7 +9,7 @@ mod cli_args;
9
9
#[ derive( Debug , Snafu ) ]
10
10
pub enum Error {
11
11
#[ snafu( display( "Failed to template file" ) ) ]
12
- TemplateFile { source : templating :: Error } ,
12
+ TemplateFile { source : template :: Error } ,
13
13
}
14
14
15
15
type Result < T , E = Error > = std:: result:: Result < T , E > ;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use std::{
7
7
8
8
use rstest:: rstest;
9
9
10
- use config_utils:: templating :: template;
10
+ use config_utils:: template :: template;
11
11
use tempfile:: tempdir;
12
12
13
13
#[ rstest]
You can’t perform that action at this time.
0 commit comments