goreleaser-template/main.go

11 lines
149 B
Go
Raw Normal View History

2021-04-20 15:35:59 +00:00
package main
import (
"fmt"
2021-07-07 14:05:58 +00:00
"github.com/sundowndev/goreleaser-template/version"
2021-04-20 15:35:59 +00:00
)
func main() {
2021-07-07 14:05:58 +00:00
fmt.Println("Hello, world!", version.Version)
2021-04-20 15:35:59 +00:00
}