mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1package main
2
3import (
4 "html/template"
5 "io"
6
7 "github.com/labstack/echo/v4"
8)
9
10type Template struct {
11 templates *template.Template
12}
13
14func (t *Template) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
15 return t.templates.ExecuteTemplate(w, name, data)
16}