- Move studio from root to frontends/studio/ - Add owner-tools frontend for live blog admin UI - Add shared ui component library - Set up npm workspaces for frontends - Add enhanced code block extension for editor Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
222 B
Go
18 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
|
|
}
|