// 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:])) }