summaryrefslogtreecommitdiff
path: root/fs.go
diff options
context:
space:
mode:
authorAlexander NeonXP Kiryukhin <i@neonxp.ru>2024-04-06 20:06:43 +0300
committerAlexander NeonXP Kiryukhin <i@neonxp.ru>2024-04-06 20:06:43 +0300
commit3b6d0dbe8cb1333126d3bf4fb0ec55719b8f3154 (patch)
treeb19ca7255cc3de6d4a930cb180e1ff24aa7c8be6 /fs.go
parent8a71e6d2736f8adcdb2514285447ff109ecd0a58 (diff)
Фикс шаблонов и кода
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