github.com/higress-group/nottinygc@v0.0.0-20231101025119-e93c4c2f8520/mage.go (about) 1 // Copyright wasilibs authors 2 // SPDX-License-Identifier: MIT 3 4 //go:build tools 5 // +build tools 6 7 // Entrypoint to mage for running without needing to install the command. 8 // https://magefile.org/zeroinstall/ 9 package main 10 11 import ( 12 "os" 13 14 "github.com/magefile/mage/mage" 15 ) 16 17 func main() { 18 os.Exit(mage.Main()) 19 }