13 lines
134 B
Go
13 lines
134 B
Go
|
package embed
|
||
|
|
||
|
import (
|
||
|
_ "embed"
|
||
|
)
|
||
|
|
||
|
//go:embed html/index.html
|
||
|
var html_index string
|
||
|
|
||
|
func ReadHtml() string {
|
||
|
return html_index
|
||
|
}
|