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