open-vault/http/assets_stub.go
2022-01-05 12:02:03 -06:00

19 lines
278 B
Go

//go:build !ui
package http
import (
"net/http"
)
func init() {
// set uiBuiltIn to false to indicate the ui is not built in. See
// http/handler.go
uiBuiltIn = false
}
// assetFS is a stub for building Vault without a UI.
func assetFS() http.FileSystem {
return nil
}