mirror of
https://github.com/hashicorp/vault.git
synced 2026-01-06 17:21:36 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
22 lines
350 B
Go
22 lines
350 B
Go
// Copyright IBM Corp. 2016, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//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
|
|
}
|