Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"text/tabwriter"
"time"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

type payloadOptions struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/deploys.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/spf13/cobra"

"rollbar-cli/internal/rollbar"
"rollbar-cli/internal/ui"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/ui"
)

var validDeployStatuses = map[string]struct{}{
Expand Down
4 changes: 2 additions & 2 deletions cmd/environments.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cmd
import (
"github.com/spf13/cobra"

"rollbar-cli/internal/rollbar"
"rollbar-cli/internal/ui"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/ui"
)

type environmentsListOptions struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/items.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (

"github.com/spf13/cobra"

"rollbar-cli/internal/rollbar"
"rollbar-cli/internal/ui"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/ui"
)

type itemsListOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/items_cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"rollbar-cli/internal/ui"
"github.com/davebarnwell/rollbar-cli/internal/ui"
)

func TestItemsListCommandJSON(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/occurrences.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

"github.com/spf13/cobra"

"rollbar-cli/internal/rollbar"
"rollbar-cli/internal/ui"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/ui"
)

type occurrencesListOptions struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/users.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"github.com/spf13/cobra"

"rollbar-cli/internal/rollbar"
"rollbar-cli/internal/ui"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/ui"
)

type usersListOptions struct {
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 rollbar-cli
module github.com/davebarnwell/rollbar-cli

go 1.23.0

Expand Down
2 changes: 1 addition & 1 deletion internal/ui/deploys_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"text/tabwriter"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

type DeployRenderOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/deploys_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

func TestRenderDeploysPlain(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/environments_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"text/tabwriter"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

type EnvironmentRenderOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/environments_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

func TestRenderEnvironmentsPlain(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/items_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/charmbracelet/lipgloss"
"golang.org/x/term"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

type ItemListRenderOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/items_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/charmbracelet/bubbles/table"
tea "github.com/charmbracelet/bubbletea"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

func captureStdout(t *testing.T, fn func()) string {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/occurrences_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"text/tabwriter"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

func RenderOccurrences(occurrences []rollbar.ItemInstance) error {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/occurrences_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

func TestRenderOccurrencesPlain(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/users_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"text/tabwriter"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

type UserRenderOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/users_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"rollbar-cli/internal/rollbar"
"github.com/davebarnwell/rollbar-cli/internal/rollbar"
)

func TestRenderUsersPlain(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"rollbar-cli/cmd"
"github.com/davebarnwell/rollbar-cli/cmd"
)

func run() int {
Expand Down
Loading