19 lines
208 B
Go
19 lines
208 B
Go
|
|
|
|
package embedded
|
|
|
|
|
|
import _ "embed"
|
|
|
|
|
|
|
|
|
|
//go:embed documentation/sbom.txt
|
|
var SbomTxt string
|
|
|
|
//go:embed documentation/sbom.html
|
|
var SbomHtml string
|
|
|
|
//go:embed documentation/sbom.json
|
|
var SbomJson string
|
|
|