0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-06-02 18:39:41 +02:00
wp-opentofu/cmd/wp-opentofu/main.go

16 lines
220 B
Go

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