blob: abe7b35008214e59d33d936bffcd2316893ee54a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//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 }
|