This commit cleans up the resources in the 'embed' package, and instead moves them into subpackages of a new 'compose' package. This makes sure that '.env' templates and docker compose contexts are located in the same location.
10 lines
220 B
Go
10 lines
220 B
Go
// Package embed contains embedded resources
|
|
package embed
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
// ResourceEmbed contains all the resources required by the WissKI-Distillery package.
|
|
//go:embed all:resources
|
|
var ResourceEmbed embed.FS
|