Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
384 B

package uiserver
import (
"io/fs"
)
// bufIndexFS is an implementation of fs.FS that intercepts requests for
// the index.html file and returns a pre-rendered file from memory.
type bufIndexFS struct {
fs fs.FS
bufIndex fs.File
}
func (fs *bufIndexFS) Open(name string) (fs.File, error) {
if name == "index.html" {
return fs.bufIndex, nil
}
return fs.fs.Open(name)
}