//go:build fullbible package bible import "embed" // Build with `-tags fullbible` to compile the optional corpora (wuj, drb, grb) // into the binary alongside the always-embedded Vulgate. These translations are // third-party scripture text and are NOT covered by lectio's AGPL licence; ship // a fullbible binary only where redistributing those corpora is permitted. // //go:embed corpora_optional var optionalEmbed embed.FS func init() { optionalFS = optionalEmbed }