mirror of
https://github.com/yarlson/lnk.git
synced 2025-08-28 17:39:47 +02:00
15 lines
222 B
Go
15 lines
222 B
Go
package main
|
|
|
|
import "github.com/yarlson/lnk/cmd"
|
|
|
|
// These variables are set by GoReleaser via ldflags
|
|
var (
|
|
version = "dev"
|
|
buildTime = "unknown"
|
|
)
|
|
|
|
func main() {
|
|
cmd.SetVersion(version, buildTime)
|
|
cmd.Execute()
|
|
}
|