aboutsummaryrefslogtreecommitdiff
path: root/plugins.go
diff options
context:
space:
mode:
authorBrian Picciano <me@mediocregopher.com>2024-07-03 12:36:05 +0200
committerBrian Picciano <me@mediocregopher.com>2024-07-03 12:36:05 +0200
commit7e1ecc4df44d20d2c9de1c8885ddc2c188062ef0 (patch)
treeac31b787dbaf6c3c702b508e9529d62ceb221923 /plugins.go
parent1a6d506a525e32bc374f89377e46a775c6737cf0 (diff)
Initial implementation of the gemtext template extension
Diffstat (limited to 'plugins.go')
-rw-r--r--plugins.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins.go b/plugins.go
new file mode 100644
index 0000000..7a98baa
--- /dev/null
+++ b/plugins.go
@@ -0,0 +1,7 @@
+// Package mediocrecaddyplugins is an index package which automatically imports
+// and registers all plugins defined in this module.
+package mediocrecaddyplugins
+
+import (
+ _ "dev.mediocregopher.com/mediocre-caddy-plugins.git/http/handlers/templates/functions"
+)