package embed import ( _ "embed" ) //go:embed html/index.html var html_index string func ReadHtml() string { return html_index }