diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-04 10:03:49 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-04 10:03:49 +0900 |
| commit | c4c77836917c367ff93d2ea47ce9142b44cc19e0 (patch) | |
| tree | ea010bc022229e8f6afb65c7ed30736e8fa8ae63 /src/argv.ts | |
| parent | Update dependencies :rocket: (diff) | |
| download | sharkey-c4c77836917c367ff93d2ea47ce9142b44cc19e0.tar.gz sharkey-c4c77836917c367ff93d2ea47ce9142b44cc19e0.tar.bz2 sharkey-c4c77836917c367ff93d2ea47ce9142b44cc19e0.zip | |
[Server] Enable slow option
Diffstat (limited to 'src/argv.ts')
| -rw-r--r-- | src/argv.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/argv.ts b/src/argv.ts index da22e5fdfc..211b42a529 100644 --- a/src/argv.ts +++ b/src/argv.ts @@ -6,6 +6,7 @@ program .option('--no-daemons', 'Disable daemon processes (for debbuging)') .option('--disable-clustering', 'Disable clustering') .option('--quiet', 'Suppress all logs') + .option('--slow', 'Delay all requests (for debbuging)') .parse(process.argv); export { program }; |