16 lines
182 B
Go
16 lines
182 B
Go
//go:build prod
|
|
// +build prod
|
|
|
|
package main
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed assets/dist/*
|
|
var staticAssets embed.FS
|
|
|
|
func GetStaticAssets() fs.FS {
|
|
return staticAssets
|
|
}
|