From 90ed7aa12176f4a1d9e06ab33a3de340db41ec2a Mon Sep 17 00:00:00 2001 From: Jesse Lucas Date: Tue, 17 Mar 2020 22:38:33 -0400 Subject: [PATCH] add apiRetry to api-utils --- src/app/api-utils.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/api-utils.ts b/src/app/api-utils.ts index 19d6d0675..cf37ad807 100644 --- a/src/app/api-utils.ts +++ b/src/app/api-utils.ts @@ -5,4 +5,6 @@ export const deviceID = (): String => { return dID.substring(0, 5) } -export const apiURL: String = 'http://127.0.0.1:8384/' \ No newline at end of file +export const apiURL: String = 'http://127.0.0.1:8384/' + +export const apiRetry: number = 3; \ No newline at end of file