12 lines
321 B
Go
12 lines
321 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"
|
|
|
|
"gitea.westgate.pw/ShadowsOverWestgate/sow-tools/internal/dispatch"
|
|
)
|
|
|
|
func main() { os.Exit(dispatch.RunBuilder("module", os.Args[1:])) }
|