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

12 lines
323 B
Go

// Command crucible-depot is the standalone depot builder (equivalent to
// `crucible depot`). A single-token binary keeps consumer wrapper scripts simple.
package main
import (
"os"
"git.westgate.pw/ShadowsOverWestgate/sow-tools/internal/dispatch"
)
func main() { os.Exit(dispatch.RunBuilder("depot", os.Args[1:])) }