2022-11-25 15:26:14 -03:00
|
|
|
// Package static contains static "text" files.
|
2019-01-22 01:12:17 -02:00
|
|
|
package static
|
|
|
|
|
2022-11-25 15:26:14 -03:00
|
|
|
import _ "embed"
|
2022-09-15 09:41:26 -03:00
|
|
|
|
2024-11-28 22:05:50 -03:00
|
|
|
// GoExampleConfig is the config used within goreleaser init.
|
2022-11-25 15:26:14 -03:00
|
|
|
//
|
|
|
|
//go:embed config.yaml
|
2024-11-28 22:05:50 -03:00
|
|
|
var GoExampleConfig []byte
|
|
|
|
|
|
|
|
// ZigExampleConfig is the config used within goreleaser init --lang zig.
|
|
|
|
//
|
|
|
|
//go:embed config.zig.yaml
|
|
|
|
var ZigExampleConfig []byte
|
2024-12-01 15:06:42 -03:00
|
|
|
|
|
|
|
// RustExampleConfig is the config used within goreleaser init --lang rust.
|
|
|
|
//
|
|
|
|
//go:embed config.rust.yaml
|
|
|
|
var RustExampleConfig []byte
|