Files
crunchy/src/interface/IConfigTask.d.ts
Godzil 7d6f762f59 Add retry mechanism in case of episodes list retrieve failure instead of just failing.
If it can't after a couple of retry (5 by default, can be changed on the command line) it will just ignore it and go to the next anime.
2018-07-30 22:47:33 +01:00

6 lines
85 B
TypeScript

interface IConfigTask {
address: string;
config: IConfigLine;
retry: number;
}