From 34ccc98a942098faefb5f4211b215ff9ccc7ad0e Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Mon, 9 Dec 2024 01:07:15 +0300 Subject: Начальный MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/.gitignore | 2 ++ static/fs.go | 6 ++++++ static/index.html | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 static/.gitignore create mode 100644 static/fs.go create mode 100644 static/index.html (limited to 'static') diff --git a/static/.gitignore b/static/.gitignore new file mode 100644 index 0000000..682c87e --- /dev/null +++ b/static/.gitignore @@ -0,0 +1,2 @@ +places +assets \ No newline at end of file diff --git a/static/fs.go b/static/fs.go new file mode 100644 index 0000000..b770631 --- /dev/null +++ b/static/fs.go @@ -0,0 +1,6 @@ +package static + +import "embed" + +//go:embed assets/* index.html +var FS embed.FS diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..5234688 --- /dev/null +++ b/static/index.html @@ -0,0 +1,13 @@ + + + + + + GeoGuessr + + + +
+ + + \ No newline at end of file -- cgit v1.2.3