mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2025-05-31 02:46:21 +00:00
- Support embed api-ui resources - The ui-path arg will be applied if provided. Also applied to api-ui resource files
13 lines
149 B
Go
13 lines
149 B
Go
//go:build embed
|
|
|
|
package ui
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
// content holds our static web server content.
|
|
//
|
|
//go:embed all:ui/*
|
|
var staticContent embed.FS
|