about summary refs log tree commit diff
path: root/src/util/mod.rs
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2019-07-19T15·54-0400
committerGriffin Smith <root@gws.fyi>2019-07-19T15·54-0400
commite2d13bd76b9af9cc2734cdcb9df605afa95cca31 (patch)
tree8a720b216dd6481fcda491ffcb082d989e2d15c6 /src/util/mod.rs
parentbc93999cf37a65d48f25e30795c85a0aef97efac (diff)
Add templates for messages
Implement a template syntax with a nom parser, and a formatter to render
templates to strings.
Diffstat (limited to 'src/util/mod.rs')
-rw-r--r--src/util/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/mod.rs b/src/util/mod.rs
index 87fd7910f3ec..c2b4eecaf5f4 100644
--- a/src/util/mod.rs
+++ b/src/util/mod.rs
@@ -1,2 +1,4 @@
 #[macro_use]
 pub mod static_cfg;
+#[macro_use]
+pub mod template;