From d1d304baaeecbd121562236a9c6e65a5457c363a Mon Sep 17 00:00:00 2001 From: ange Date: Sat, 28 Sep 2024 23:19:11 +0700 Subject: [PATCH] fix: remove unused go vars --- src/vars/vars.go | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/vars/vars.go diff --git a/src/vars/vars.go b/src/vars/vars.go deleted file mode 100644 index 5108d04..0000000 --- a/src/vars/vars.go +++ /dev/null @@ -1,19 +0,0 @@ -package vars - -import ( - "path/filepath" -) - -var ( - templates string - static string - html string - css string -) - -func init() { - templates = "templates" - static = "static" - html = filepath.Join(static, "html") - css = filepath.Join(static, "css") -}