Files
TaskPool/internal/static/no_embed.go
T
2026-03-05 12:15:37 +08:00

17 lines
171 B
Go

//go:build !web
package static
import (
"io/fs"
"os"
)
func GetFS() fs.FS {
return nil
}
func ReadFile(name string) ([]byte, error) {
return nil, os.ErrNotExist
}