test: add static assets handler test

This commit is contained in:
rramiachraf 2024-05-04 13:34:19 +01:00
parent 6d6856700b
commit 5014e10c7f
2 changed files with 36 additions and 1 deletions

View file

@ -9,5 +9,5 @@ import (
type assets struct{}
func (assets) Open(p string) (fs.File, error) {
return os.Open(path.Join("./", p))
return os.Open(path.Join("../", p))
}