24 lines
598 B
Go
24 lines
598 B
Go
package cli
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "tongo",
|
|
Short: "Tongo Core — Quark's Holo-Grid Ledger Simulation Engine",
|
|
Long: `Tongo Core is the simulation engine powering Quark's Holo-Grid Ledger.
|
|
It generates live match events, simulates combat, calculates real-time
|
|
odds, and streams telemetry data into Valkey for the frontend to consume.
|
|
|
|
"The riskier the road, the greater the profit." — Rule of Acquisition #62`,
|
|
}
|
|
|
|
// Execute runs the root cobra command.
|
|
func Execute() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|