Files
sow-tools/cmd/crucible-topdata/main.go
T

12 lines
332 B
Go

// Command crucible-topdata is the standalone topdata builder (equivalent to
// `crucible topdata`). sow-topdata resolves this binary to compile 2da/tlk + wiki.
package main
import (
"os"
"gitea.westgate.pw/ShadowsOverWestgate/sow-tools/internal/dispatch"
)
func main() { os.Exit(dispatch.RunBuilder("topdata", os.Args[1:])) }