11 lines
229 B
Go
11 lines
229 B
Go
// Command crucible is the Crucible dispatcher: `crucible <builder> [args]`.
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"git.westgate.pw/ShadowsOverWestgate/sow-tools/internal/dispatch"
|
|
)
|
|
|
|
func main() { os.Exit(dispatch.Main(os.Args[1:])) }
|