mirror of
https://github.com/traefik/traefik
synced 2026-02-03 14:40:32 +00:00
15 lines
213 B
Go
15 lines
213 B
Go
package webui
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
// Files starting with . and _ are excluded by default
|
|
//
|
|
//go:embed static
|
|
var assets embed.FS
|
|
|
|
// FS contains the web UI assets.
|
|
var FS, _ = fs.Sub(assets, "static")
|