1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*!
Templar CLI
# Usage
```bash
templar 0.1.0
Phil Proctor <philliptproctor@gmail.com>
Lightweight yet powerful templating
USAGE:
templar [OPTIONS] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-i, --input <input>... File to parse and load into the templating context
-o, --output <output> Output to send the result to, defaults to stdout
-s, --set <set>... Directly set a variable on the context
SUBCOMMANDS:
expression Run an expression directly
template Run a template
```
*/
pub use *;
pub use *;