mirror of
https://github.com/alibaba/higress.git
synced 2026-02-26 13:40:49 +08:00
17 lines
251 B
Go
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())
|
|
}
|