mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
70359e5d27
Co-authored-by: nrwiersma <nick@wiersma.co.za>
13 lines
155 B
Go
13 lines
155 B
Go
package webui
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed static
|
|
var assets embed.FS
|
|
|
|
// FS contains the web UI assets.
|
|
var FS, _ = fs.Sub(assets, "static")
|