19 lines
222 B
Go
19 lines
222 B
Go
|
|
//go:build testing
|
||
|
|
|
||
|
|
package studio
|
||
|
|
|
||
|
|
import (
|
||
|
|
"io/fs"
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
var distFS fs.FS
|
||
|
|
|
||
|
|
func Handler() http.Handler {
|
||
|
|
return http.NotFoundHandler()
|
||
|
|
}
|
||
|
|
|
||
|
|
func Read(name string) ([]byte, error) {
|
||
|
|
return nil, fs.ErrNotExist
|
||
|
|
}
|