859640d814
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/claude-agent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
13 lines
191 B
Go
13 lines
191 B
Go
package embedded
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed dashboard/proxy.json
|
|
var dashboardFS embed.FS
|
|
|
|
func DashboardJSON() ([]byte, error) {
|
|
return dashboardFS.ReadFile("dashboard/proxy.json")
|
|
}
|