9 lines
179 B
Go
9 lines
179 B
Go
package html
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func RenderOrError(w http.ResponseWriter, template_name string, content interface{}) {
|
|
templates.renderOrError(w, template_name, content)
|
|
}
|