chore: removed unused template functions
This commit is contained in:
parent
ea8c2e4bbb
commit
caa0b01937
@ -2,10 +2,7 @@ package server
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"html/template"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/dustin/go-humanize"
|
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
"github.com/gofiber/template/html"
|
"github.com/gofiber/template/html"
|
||||||
|
|
||||||
@ -24,21 +21,6 @@ func Start(port string) error {
|
|||||||
engine := html.New("./views", ".html")
|
engine := html.New("./views", ".html")
|
||||||
engine.Reload(true)
|
engine.Reload(true)
|
||||||
|
|
||||||
engine.AddFunc("htmlSafe", func(html string) template.HTML {
|
|
||||||
return template.HTML(html)
|
|
||||||
})
|
|
||||||
engine.AddFunc("humanDate", func(date time.Time) template.HTML {
|
|
||||||
return template.HTML(humanize.Time(date))
|
|
||||||
})
|
|
||||||
engine.AddFunc("coalesce", func(args ...*string) string {
|
|
||||||
for _, s := range args {
|
|
||||||
if s != nil && *s != "" {
|
|
||||||
return *s
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
})
|
|
||||||
|
|
||||||
app := fiber.New(fiber.Config{
|
app := fiber.New(fiber.Config{
|
||||||
Views: engine,
|
Views: engine,
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user