You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: backup/backup.go
+54-11Lines changed: 54 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -2,25 +2,49 @@ package backup
2
2
3
3
import (
4
4
"context"
5
+
"fmt"
5
6
"io"
6
7
"monodb-backup/notify"
7
8
"os"
8
9
"runtime"
9
10
"strconv"
10
11
"strings"
12
+
"sync"
11
13
"time"
12
14
)
13
15
14
-
// var didItWork bool = true // this variable is for determining if the app should send a notification after a failed backup to inform that it works now
0 commit comments