Changed package from awstools to audax

This commit is contained in:
Leon Mika 2022-07-28 21:36:16 +10:00
parent 2a35667cdb
commit a8dd264983
83 changed files with 198 additions and 198 deletions

View file

@ -3,9 +3,9 @@ package controllers
import (
"context"
"github.com/lmika/awstools/internal/common/ui/uimodels"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/awstools/internal/sqs-browse/services/messages"
"github.com/lmika/audax/internal/common/ui/uimodels"
"github.com/lmika/audax/internal/sqs-browse/models"
"github.com/lmika/audax/internal/sqs-browse/services/messages"
"github.com/pkg/errors"
)

View file

@ -8,7 +8,7 @@ import (
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/sqs"
"github.com/aws/aws-sdk-go-v2/service/sqs/types"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/audax/internal/sqs-browse/models"
"github.com/pkg/errors"
)

View file

@ -4,7 +4,7 @@ import (
"context"
"github.com/asdine/storm"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/audax/internal/sqs-browse/models"
"github.com/pkg/errors"
)

View file

@ -3,7 +3,7 @@ package messages
import (
"context"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/audax/internal/sqs-browse/models"
)
type MessageSender interface {

View file

@ -3,7 +3,7 @@ package messages
import (
"context"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/audax/internal/sqs-browse/models"
"github.com/pkg/errors"
)

View file

@ -3,7 +3,7 @@ package pollmessage
import (
"context"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/audax/internal/sqs-browse/models"
)
type MessageStore interface {

View file

@ -2,8 +2,8 @@ package styles
import (
"github.com/charmbracelet/lipgloss"
"github.com/lmika/awstools/internal/dynamo-browse/ui/teamodels/frame"
"github.com/lmika/awstools/internal/dynamo-browse/ui/teamodels/statusandprompt"
"github.com/lmika/audax/internal/dynamo-browse/ui/teamodels/frame"
"github.com/lmika/audax/internal/dynamo-browse/ui/teamodels/statusandprompt"
)
type Styles struct {

View file

@ -1,5 +1,5 @@
package ui
import "github.com/lmika/awstools/internal/sqs-browse/models"
import "github.com/lmika/audax/internal/sqs-browse/models"
type NewMessagesEvent []*models.Message

View file

@ -11,10 +11,10 @@ import (
"github.com/charmbracelet/bubbles/viewport"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/lmika/awstools/internal/common/ui/dispatcher"
"github.com/lmika/awstools/internal/common/ui/events"
"github.com/lmika/awstools/internal/sqs-browse/controllers"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/audax/internal/common/ui/dispatcher"
"github.com/lmika/audax/internal/common/ui/events"
"github.com/lmika/audax/internal/sqs-browse/controllers"
"github.com/lmika/audax/internal/sqs-browse/models"
table "github.com/lmika/go-bubble-table"
)

View file

@ -6,7 +6,7 @@ import (
"strings"
table "github.com/lmika/go-bubble-table"
"github.com/lmika/awstools/internal/sqs-browse/models"
"github.com/lmika/audax/internal/sqs-browse/models"
)
type messageTableRow models.Message