summaryrefslogtreecommitdiff
path: root/fs.go
diff options
context:
space:
mode:
Diffstat (limited to 'fs.go')
-rw-r--r--fs.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/fs.go b/fs.go
new file mode 100644
index 0000000..93fec55
--- /dev/null
+++ b/fs.go
@@ -0,0 +1,9 @@
+package main
+
+import "embed"
+
+//go:embed static/*
+var staticFS embed.FS
+
+//go:embed tpl/*
+var tplFS embed.FS