mirror of
https://github.com/glanceapp/glance.git
synced 2024-11-22 16:34:35 +01:00
16 lines
234 B
Go
16 lines
234 B
Go
package assets
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed static
|
|
var _publicFS embed.FS
|
|
|
|
//go:embed templates
|
|
var _templateFS embed.FS
|
|
|
|
var PublicFS, _ = fs.Sub(_publicFS, "static")
|
|
var TemplateFS, _ = fs.Sub(_templateFS, "templates")
|