0
0
mirror of https://github.com/thegeeklab/wp-git-action.git synced 2024-06-03 04:39:42 +02:00
wp-git-action/cmd/wp-git-action/main.go

16 lines
222 B
Go
Raw Normal View History

2022-11-27 14:33:39 +01:00
package main
import (
"github.com/thegeeklab/wp-git-action/plugin"
2022-11-27 14:33:39 +01:00
)
//nolint:gochecknoglobals
2022-11-27 14:33:39 +01:00
var (
BuildVersion = "devel"
BuildDate = "00000000"
)
func main() {
plugin.New(nil, BuildVersion, BuildDate).Run()
2022-11-27 14:33:39 +01:00
}