mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-17 20:47:50 +02:00
20 lines
467 B
Go
20 lines
467 B
Go
// Package static contains static "text" files.
|
|
package static
|
|
|
|
import _ "embed"
|
|
|
|
// GoExampleConfig is the config used within goreleaser init.
|
|
//
|
|
//go:embed config.yaml
|
|
var GoExampleConfig []byte
|
|
|
|
// ZigExampleConfig is the config used within goreleaser init --lang zig.
|
|
//
|
|
//go:embed config.zig.yaml
|
|
var ZigExampleConfig []byte
|
|
|
|
// RustExampleConfig is the config used within goreleaser init --lang rust.
|
|
//
|
|
//go:embed config.rust.yaml
|
|
var RustExampleConfig []byte
|