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
23 lines
324 B
Go
23 lines
324 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"git.agecem.com/agecem/agecem-org/embed"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
var html string
|
|
|
|
func init() {
|
|
html = embed.ReadHtml()
|
|
}
|
|
|
|
func Execute() {
|
|
e := echo.New()
|
|
|
|
e.GET("/", func(c echo.Context) error {
|
|
return c.HTML(http.StatusOK, html)
|
|
})
|
|
e.Logger.Fatal(e.Start(":8080"))
|
|
}
|