mozhi/views/embed.go
Arya Kiran 9e7d11104a
All checks were successful
mozhi pipeline / Push Docker image to Codeberg docker registry (push) Successful in 2m57s
mozhi pipeline / Build and publish artifacts (push) Successful in 12m28s
include views and assets in binary
2023-09-10 18:15:46 +05:30

11 lines
107 B
Go

package views
import "embed"
//go:embed *
var files embed.FS
func GetFiles() embed.FS {
return files
}