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