diff --git a/README.md b/README.md
index 9efc59f..79c7270 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# EarthRanger CLI
-![Build Status](https://github.com/doneill/er-cli-go/actions/workflows/go.yml/badge.svg)
+![Build Status](https://github.com/doneill/er-cli/actions/workflows/go.yml/badge.svg)
## Build
`go build -o bin/er`
@@ -43,8 +43,8 @@ er user
## Contributors
-
-
+
+
## Licensing
diff --git a/api/apiuser.go b/api/apiuser.go
index c779669..a9b7f41 100644
--- a/api/apiuser.go
+++ b/api/apiuser.go
@@ -5,7 +5,7 @@ import (
"fmt"
"net/http"
- "github.com/doneill/er-cli-go/config"
+ "github.com/doneill/er-cli/config"
)
// ----------------------------------------------
diff --git a/cmd/auth.go b/cmd/auth.go
index 5c2ee44..f178c5f 100644
--- a/cmd/auth.go
+++ b/cmd/auth.go
@@ -6,7 +6,7 @@ import (
"strings"
"syscall"
- "github.com/doneill/er-cli-go/api"
+ "github.com/doneill/er-cli/api"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"golang.org/x/term"
diff --git a/cmd/token.go b/cmd/token.go
index 49cd379..e9f96e6 100644
--- a/cmd/token.go
+++ b/cmd/token.go
@@ -3,7 +3,7 @@ package cmd
import (
"fmt"
- "github.com/doneill/er-cli-go/config"
+ "github.com/doneill/er-cli/config"
"github.com/spf13/cobra"
)
diff --git a/cmd/user.go b/cmd/user.go
index 5d2ff73..1bf762a 100644
--- a/cmd/user.go
+++ b/cmd/user.go
@@ -4,7 +4,7 @@ import (
"fmt"
"os"
- "github.com/doneill/er-cli-go/api"
+ "github.com/doneill/er-cli/api"
"github.com/olekukonko/tablewriter"
"github.com/spf13/cobra"
)
diff --git a/go.mod b/go.mod
index 8783466..6327d53 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/doneill/er-cli-go
+module github.com/doneill/er-cli
go 1.21
diff --git a/main.go b/main.go
index 5ca5ea0..670459f 100644
--- a/main.go
+++ b/main.go
@@ -1,6 +1,6 @@
package main
-import "github.com/doneill/er-cli-go/cmd"
+import "github.com/doneill/er-cli/cmd"
func main() {
cmd.Execute()