wp-github-comment/cmd/wp-github-comment/main.go

16 lines
226 B
Go

package main
import (
"github.com/thegeeklab/wp-github-comment/plugin"
)
//nolint:gochecknoglobals
var (
BuildVersion = "devel"
BuildDate = "00000000"
)
func main() {
plugin.New(nil, BuildVersion, BuildDate).Run()
}