1
0
mirror of https://github.com/containous/traefik.git synced 2024-10-26 08:55:09 +03:00
traefik/webui/embed.go
2024-09-27 15:22:04 +02:00

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")