mirror of
https://github.com/netbirdio/dex.git
synced 2026-05-22 18:43:53 -07:00
fc0e2e9383
Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
15 lines
205 B
Go
15 lines
205 B
Go
package web
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed static/* templates/* themes/* robots.txt
|
|
var files embed.FS
|
|
|
|
// FS returns a filesystem with the default web assets.
|
|
func FS() fs.FS {
|
|
return files
|
|
}
|