diff --git a/utils.go b/utils.go index 0e2b8e131243639e3d4f06e74dca48af8576a294..fafe419061e8953d54ddd89756a97c1b912c9038 100644 --- a/utils.go +++ b/utils.go @@ -388,3 +388,22 @@ func GetRandomString(n int) string { func UrlFor(endpoint string, values ...string) string { return BeeApp.UrlFor(endpoint, values...) } + + +//This can be changed to a better name +func AssetsJs(src string) template.HTML { + text := string(src) + + text = "" + + return template.HTML(text) +} + +//This can be changed to a better name +func AssetsCss(src string) template.HTML { + text := string(src) + + text = "" + + return template.HTML(text) +}