// Package web 提供插件管理页面的静态资源。 package web import _ "embed" //go:embed ui.html var uiHTML []byte // UI 返回只读的管理页面内容。 func UI() []byte { return uiHTML }