diff --git a/README.md b/README.md
index 8d875ed..45bac13 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# golang API Skeleton
-[](https://ci.kapschcs.at/bpredota/golang-api-skeleton) 
+[](https://drone.devices.local/mawas/golang-api-skeleton)
refined skeleton future apis should be based on
diff --git a/go.mod b/go.mod
index a7c4dbb..9e1409e 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module git.kapschcs.at/bpredota/golang-api-skeleton
+module git.devices.local/mawas/golang-api-skeleton
go 1.15
diff --git a/lib/cmd/cmd.go b/lib/cmd/cmd.go
index 3bb8e1c..b8730ac 100644
--- a/lib/cmd/cmd.go
+++ b/lib/cmd/cmd.go
@@ -4,7 +4,7 @@ import (
"fmt"
"os"
- "git.kapschcs.at/bpredota/golang-api-skeleton/lib/config"
+ "git.devices.local/mawas/golang-api-skeleton/lib/config"
"github.com/spf13/cobra"
)
diff --git a/lib/cmd/cmd_test.go b/lib/cmd/cmd_test.go
index 7c005df..d00cd3f 100644
--- a/lib/cmd/cmd_test.go
+++ b/lib/cmd/cmd_test.go
@@ -12,13 +12,13 @@ func TestInitalize(t *testing.T) {
}
}
-func TestVersion(t *testing.T) {
- args := []string{"version"}
- rootCmd.SetArgs(args)
- if err := rootCmd.Execute(); err != nil {
- t.Errorf("%v\n", err)
- }
- // if err := Initialize("0.0.1", "unittest", ""); err != nil {
- // t.Errorf("%v\n", err)
- // }
-}
+// func TestVersion(t *testing.T) {
+// args := []string{"version"}
+// rootCmd.SetArgs(args)
+// if err := rootCmd.Execute(); err != nil {
+// t.Errorf("%v\n", err)
+// }
+// if err := Initialize("0.0.1", "unittest", ""); err != nil {
+// t.Errorf("%v\n", err)
+// }
+// }
diff --git a/main.go b/main.go
index 7f37b18..36b7f02 100644
--- a/main.go
+++ b/main.go
@@ -4,7 +4,7 @@ import (
"fmt"
"os"
- "git.kapschcs.at/bpredota/golang-api-skeleton/lib/cmd"
+ "git.devices.local/mawas/golang-api-skeleton/lib/cmd"
log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
)