tebakaja's picture
deployment
03c0050
raw
history blame contribute delete
154 Bytes
package helpers
import (
"encoding/json"
"html/template"
)
func ToJSON(v interface{}) template.JS {
b, _ := json.Marshal(v)
return template.JS(b)
}