From 5ac9362df973168226cb1b8933d5257c1d85e101 Mon Sep 17 00:00:00 2001 From: kitt Date: Sun, 3 Dec 2023 17:54:35 -0500 Subject: [PATCH] better cli args --- s3si.ts | 2 +- src/app.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/s3si.ts b/s3si.ts index d30449f..cbe2b09 100644 --- a/s3si.ts +++ b/s3si.ts @@ -30,7 +30,7 @@ Options: --profile-path , -p Path to config file (default: ./profile.json) --exporter , -e Exporter list to use (default: stat.ink) Multiple exporters can be separated by commas - (e.g. "stat.ink,file,mongodb") + (e.g. "stat.ink,file,mongodb,splashcat") --list-method When set to "latest", the latest 50 matches will be obtained. When set to "all", matches of all modes will be obtained with a maximum of 250 matches (5 modes x 50 matches). When set to "auto", the latest 50 matches will be obtained. If 50 matches have not been uploaded yet, matches will be obtained from the list of all modes. diff --git a/src/app.ts b/src/app.ts index b3f2a2d..b0aeda3 100644 --- a/src/app.ts +++ b/src/app.ts @@ -28,7 +28,7 @@ export type Opts = { export const DEFAULT_OPTS: Opts = { profilePath: "./profile.json", - exporter: "stat.ink", + exporter: "stat.ink,splashcat", noProgress: false, monitor: false, withSummary: false,