11 lines
164 B
Go
11 lines
164 B
Go
package proxy
|
|
|
|
import "embed"
|
|
|
|
//go:embed html
|
|
var htmlFiles embed.FS
|
|
|
|
func getHTMLFile(path string) ([]byte, error) {
|
|
return htmlFiles.ReadFile("html/" + path)
|
|
}
|