posh/embed/embed.go
Kevin Franklin Kim e2ad376b6c initial commit
2023-01-03 15:37:15 +01:00

15 lines
209 B
Go

package embed
import (
"embed"
"io/fs"
"path/filepath"
)
//go:embed scaffold
var scaffold embed.FS
func Scaffold(path string) (fs.FS, error) {
return fs.Sub(scaffold, filepath.Join("scaffold", path))
}