shithub: hell

Download patch

ref: de94d3337b5a4ea031be881ec287e1691c2a50af
parent: 835119bba5d3268f18bca56be3e092ced9c37c04
author: penny <penny@limitedideas.org>
date: Sun Oct 5 06:48:04 EDT 2025

templater initial commit

--- /dev/null
+++ b/templater.go
@@ -1,0 +1,15 @@
+package main
+
+import (
+	"fmt"
+)
+
+type templateDefs struct {
+	stringer fmt.Stringer
+	key      string
+}
+
+type templateRenderer struct {
+	tempdefs *templateDefs
+}
+
--