This repository has been archived on 2024-12-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bottin/embed/embed.go

10 lines
129 B
Go

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