diff options
Diffstat (limited to 'templates/templates.go')
-rw-r--r-- | templates/templates.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/templates.go b/templates/templates.go new file mode 100644 index 0000000..40d229a --- /dev/null +++ b/templates/templates.go @@ -0,0 +1,9 @@ +package templates + +import _ "embed" + +//go:embed index.html +var Index string + +//go:embed package.html +var Package string |