aboutsummaryrefslogtreecommitdiffstats
path: root/webui/debug_assets.go
blob: 87ec4f6c7adbe65701cea10f0e70ad9657209901 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// +build debugwebui

package webui

import "net/http"

// WebUIAssets give access to the files of the Web UI for a http handler
// This access is only used in a debug build to be able to edit the WebUI
// files without having to package them.
var WebUIAssets http.FileSystem = http.Dir("webui/build")