mirror of
https://github.com/kopia/kopia.git
synced 2026-01-25 06:48:48 -05:00
16 lines
220 B
Go
16 lines
220 B
Go
//go:build !nohtmlui
|
|
// +build !nohtmlui
|
|
|
|
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/kopia/htmluibuild"
|
|
)
|
|
|
|
// AssetFile exposes HTML UI files.
|
|
func AssetFile() http.FileSystem {
|
|
return htmluibuild.AssetFile()
|
|
}
|