fix: remove unused go vars
All checks were successful
/ deploy (push) Successful in 46s

This commit is contained in:
ange 2024-09-28 23:19:11 +07:00
parent ea10ccc31a
commit d1d304baae
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -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")
}