Victor Lacasse-Beaudoin
fcab53ba2e
Permet d'intégrer des fichiers texte dans le fichier exécutable. Copier répertoire embed/ ainsi que son contenu dans le container. Ajouter embed.ReadHtml() qui retourne le contenu de embed/html/index.html Exécuter go fmt
12 lines
134 B
Go
12 lines
134 B
Go
package embed
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed html/index.html
|
|
var html_index string
|
|
|
|
func ReadHtml() string {
|
|
return html_index
|
|
}
|