nidus-sync/html/html.go

10 lines
179 B
Go
Raw Permalink Normal View History

package html
import (
"net/http"
)
func RenderOrError(w http.ResponseWriter, template_name string, content interface{}) {
templates.renderOrError(w, template_name, content)
}