Skip to content

Commit 5df18c1

Browse files
committed
Rename imports
1 parent 51c4efc commit 5df18c1

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

app/queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"sync"
55
"time"
66

7-
"git.digineo.de/digineo/zackup/config"
7+
"github.com/digineo/zackup/config"
88
)
99

1010
// maxParallelity defines the max. queue size. At a certain value, we're

app/runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path/filepath"
88
"time"
99

10-
"git.digineo.de/digineo/zackup/config"
10+
"github.com/digineo/zackup/config"
1111
"github.com/pkg/errors"
1212
"github.com/sirupsen/logrus"
1313
)

app/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strconv"
1111
"time"
1212

13-
"git.digineo.de/digineo/zackup/graylog"
13+
"github.com/digineo/zackup/graylog"
1414
humanize "github.com/dustin/go-humanize"
1515
"github.com/gorilla/mux"
1616
"github.com/prometheus/client_golang/prometheus/promhttp"

app/ssh.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"syscall"
1313
"time"
1414

15-
"git.digineo.de/digineo/zackup/config"
15+
"github.com/digineo/zackup/config"
1616
"github.com/sirupsen/logrus"
1717
)
1818

app/state.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010
"time"
1111

12-
"git.digineo.de/digineo/zackup/config"
12+
"github.com/digineo/zackup/config"
1313
"github.com/sirupsen/logrus"
1414
)
1515

cmd/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package cmd
33
import (
44
"os"
55

6-
"git.digineo.de/digineo/zackup/app"
7-
"git.digineo.de/digineo/zackup/config"
8-
"git.digineo.de/digineo/zackup/graylog"
96
"github.com/digineo/goldflags"
7+
"github.com/digineo/zackup/app"
8+
"github.com/digineo/zackup/config"
9+
"github.com/digineo/zackup/graylog"
1010
"github.com/sirupsen/logrus"
1111
"github.com/spf13/cobra"
1212
)

cmd/serve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os/signal"
66
"syscall"
77

8-
"git.digineo.de/digineo/zackup/app"
8+
"github.com/digineo/zackup/app"
99
"github.com/sirupsen/logrus"
1010
"github.com/spf13/cobra"
1111
)

cmd/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"time"
77

8-
"git.digineo.de/digineo/zackup/app"
8+
"github.com/digineo/zackup/app"
99
humanize "github.com/dustin/go-humanize"
1010
"github.com/k0kubun/pp"
1111
"github.com/spf13/cobra"

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"syscall"
99
"time"
1010

11-
"git.digineo.de/digineo/zackup/cmd"
11+
"github.com/digineo/zackup/cmd"
1212
)
1313

1414
func main() {

0 commit comments

Comments
 (0)