bottin/embed/embed.go

11 lines
129 B
Go
Raw Normal View History

2023-03-06 14:01:18 -05:00
package embed
import _ "embed"
//go:embed html/index.html
var Html_index string
func ReadHtml() string {
return Html_index
}