Files
sow-tools/cmd/crucible-module/main.go

12 lines
319 B
Go

// Command crucible-module is the standalone module builder (equivalent to
// `crucible module`). sow-module resolves this binary to package its .mod.
package main
import (
"os"
"git.westgate.pw/ShadowsOverWestgate/sow-tools/internal/dispatch"
)
func main() { os.Exit(dispatch.RunBuilder("module", os.Args[1:])) }