16 lines
283 B
Go
16 lines
283 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
|
|
"bybit_btcusdt_ingest/utils/stats"
|
|
)
|
|
|
|
func main() {
|
|
dataDir := flag.String("data", "./data", "Path to the data directory")
|
|
noColor := flag.Bool("no-color", false, "Disable colored output")
|
|
flag.Parse()
|
|
|
|
stats.PrintDashboard(*dataDir, *noColor)
|
|
}
|