| 1 | // Package releasenotes exposes the reviewed release catalog bundled with each |
| 2 | // Reasonix build. |
| 3 | package releasenotes |
| 4 | |
| 5 | import "embed" |
| 6 | |
| 7 | // Content contains the structured release history from the exact source |
| 8 | // revision used to build the product. |
| 9 | // |
| 10 | //go:embed releases.json |
| 11 | var Content embed.FS |
| 12 |