11 lines
257 B
Go
11 lines
257 B
Go
// Command crucible-wiki is the standalone wiki builder (equivalent to `crucible wiki`).
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"gitea.westgate.pw/ShadowsOverWestgate/sow-tools/internal/dispatch"
|
|
)
|
|
|
|
func main() { os.Exit(dispatch.RunBuilder("wiki", os.Args[1:])) }
|