15 lines
140 B
Go
15 lines
140 B
Go
//go:build ignore
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/magefile/mage/mage"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(mage.Main())
|
|
}
|