mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-03 04:47:36 +03:00
13 lines
162 B
Go
13 lines
162 B
Go
package handlers
|
|
|
|
import (
|
|
"io/fs"
|
|
"os"
|
|
"path"
|
|
)
|
|
|
|
type assets struct{}
|
|
|
|
func (assets) Open(p string) (fs.File, error) {
|
|
return os.Open(path.Join("../", p))
|
|
}
|