[WIP] prep for embedded files 2

This commit is contained in:
HeshamTB 2023-09-11 21:10:58 +03:00
parent 5c7bfc21ed
commit 98c98d16b4
3 changed files with 10 additions and 11 deletions

View File

@ -1,7 +1,6 @@
package main
import (
"embed"
"encoding/json"
"fmt"
"html/template"
@ -10,7 +9,7 @@ import (
"net/http"
"time"
"gitea.hbanafa.com/hesham/viddl/resources"
"gitea.hbanafa.com/hesham/viddl/templates"
)
const (
@ -80,12 +79,12 @@ func writeJSONResponse(w http.ResponseWriter, s string) http.ResponseWriter {
}
var templates *template.Template
var views *template.Template
func init() {
log.Println("[ init ] Starting...")
templates = template.Must(template.ParseFS(resources.TemplatesFS, "templates/*.html"))
views = template.Must(template.ParseFS(templates.TemplatesFS , "*.html"))
}
func main() {

View File

@ -1,7 +0,0 @@
package resources
import "embed"
//go:embed gitea.hbanafa.com/hesham/viddl/resources
var TemplatesFS embed.FS

7
templates/templates.go Normal file
View File

@ -0,0 +1,7 @@
package templates
import "embed"
//go:embed *.html
var TemplatesFS embed.FS