mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 02:02:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			512 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			512 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: MPL-2.0
 | |
| 
 | |
| //go:build ui
 | |
| 
 | |
| package http
 | |
| 
 | |
| import (
 | |
| 	"embed"
 | |
| 	"io/fs"
 | |
| 	"net/http"
 | |
| )
 | |
| 
 | |
| // content is our static web server content.
 | |
| //
 | |
| //go:embed web_ui/*
 | |
| var content embed.FS
 | |
| 
 | |
| // assetFS is a http Filesystem that serves the generated web UI from the
 | |
| // "ember-dist" make step
 | |
| func assetFS() http.FileSystem {
 | |
| 	// sub out to web_ui, where the generated content lives
 | |
| 	f, err := fs.Sub(content, "web_ui")
 | |
| 	if err != nil {
 | |
| 		panic(err)
 | |
| 	}
 | |
| 	return http.FS(f)
 | |
| }
 | 
