Skip to content

Commit

Permalink
refactor module package
Browse files Browse the repository at this point in the history
  • Loading branch information
doneill committed Dec 15, 2023
1 parent 9d358ef commit 0e8ed7c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down Expand Up @@ -43,8 +43,8 @@ er user


## Contributors
<a href="https://github.com/doneill/er-cli-go/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=doneill/er-cli-go" />
<a href="https://github.com/doneill/er-cli/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=doneill/er-cli" />
</a>

## Licensing
Expand Down
2 changes: 1 addition & 1 deletion api/apiuser.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"net/http"

"github.com/doneill/er-cli-go/config"
"github.com/doneill/er-cli/config"
)

// ----------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion cmd/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/doneill/er-cli-go
module github.com/doneill/er-cli

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -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()
Expand Down

0 comments on commit 0e8ed7c

Please sign in to comment.