Files
higress/plugins/wasm-go/extensions/waf/mage.go
2023-06-28 19:25:36 +08:00

17 lines
251 B
Go

//go:build ignore
// +build ignore
// Entrypoint to mage for running without needing to install the command.
// https://magefile.org/zeroinstall/
package main
import (
"os"
"github.com/magefile/mage/mage"
)
func main() {
os.Exit(mage.Main())
}