blob: 0b9a0bd54a33fba4a1a186f92195b0aa192a7798 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import parseArgs from "minimist";
export type Args = {
_: any;
storagetable?: string;
storagebucket?: string;
storageprefix?: string;
sourcebucket?: string;
sourcequeue?: string;
};
export const args = parseArgs(process.argv.slice(2)) as Args;
|