mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 08:43:10 -07:00
10 lines
140 B
Go
10 lines
140 B
Go
package integration
|
|
|
|
import "embed"
|
|
|
|
//go:embed templates/*.html
|
|
var templates embed.FS
|
|
|
|
func GetTemplates() embed.FS {
|
|
return templates
|
|
}
|