github.com/wasilibs/nottinygc@v0.7.2-0.20240312114022-d59c9478ef51/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 }