Skip to content

Commit

Permalink
Fix package references from repo migration
Browse files Browse the repository at this point in the history
  • Loading branch information
dhumphreys01 committed Feb 24, 2023
1 parent ba73e9b commit b8b2d7b
Show file tree
Hide file tree
Showing 19 changed files with 31 additions and 31 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# GoAws
[![Build Status](https://travis-ci.org/p4tin/goaws.svg?branch=master)](https://travis-ci.org/p4tin/goaws)

You are always welcome to [tweet me](https://twitter.com/gocodecloud) or [buy me a coffee](https://www.paypal.me/p4tin)
You are always welcome to [tweet the creator in chief](https://twitter.com/gocodecloud) or [buy him a coffee](https://www.paypal.me/p4tin)

Written in Go this is a clone of the AWS SQS/SNS systems. This system is designed to emulate SQS and SNS in a local environment so developers can test their interfaces without having to connect to the AWS Cloud and possibly incurring the expense, or even worse actually write to production topics/queues by mistake. If you see any problems or would like to see a new feature, please open an issue here in github. As well, I will logon to Gitter so we can discuss your deployment issues or the weather.

Expand Down Expand Up @@ -71,7 +71,7 @@ Here is a list of the APIs:

# Installation

go get github.com/p4tin/goaws/...
git clone git@github.com:Admiral-Piett/goaws.git

## Build and Run (Standalone)

Expand All @@ -97,7 +97,7 @@ Here is a list of the APIs:

You can test that your installation is working correctly in one of two ways:

1. Usign the postman collection, use this [link to import it](https://www.getpostman.com/collections/091386eae8c70588348e). As well the Environment variable for the collection should be set as follows: URL = http://localhost:4100/.
1. Using the postman collection, use this [link to import it](https://www.getpostman.com/collections/091386eae8c70588348e). As well the Environment variable for the collection should be set as follows: URL = http://localhost:4100/.

2. by using the AWS cli tools ([download link](http://docs.aws.amazon.com/cli/latest/userguide/installing.html)) here are some samples, you can refer to the [aws cli tools docs](http://docs.aws.amazon.com/cli/latest/reference/) for further information.

Expand Down
8 changes: 4 additions & 4 deletions app/cmd/goaws.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import (
"os"
"time"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"

log "github.com/sirupsen/logrus"

"github.com/p4tin/goaws/app/conf"
"github.com/p4tin/goaws/app/gosqs"
"github.com/p4tin/goaws/app/router"
"github.com/Admiral-Piett/goaws/app/conf"
"github.com/Admiral-Piett/goaws/app/gosqs"
"github.com/Admiral-Piett/goaws/app/router"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion app/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"io"
"sort"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
)

var LogMessages bool
Expand Down
2 changes: 1 addition & 1 deletion app/common/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package common
import (
"testing"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
"github.com/stretchr/testify/assert"
)

Expand Down
4 changes: 2 additions & 2 deletions app/conf/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (

log "github.com/sirupsen/logrus"

"github.com/Admiral-Piett/goaws/app"
"github.com/Admiral-Piett/goaws/app/common"
"github.com/ghodss/yaml"
"github.com/p4tin/goaws/app"
"github.com/p4tin/goaws/app/common"
)

var envs map[string]app.Environment
Expand Down
2 changes: 1 addition & 1 deletion app/conf/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package conf
import (
"testing"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
)

func TestConfig_NoQueuesOrTopics(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions app/gosns/gosns.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"io/ioutil"
"math/big"

"github.com/p4tin/goaws/app"
"github.com/p4tin/goaws/app/common"
"github.com/Admiral-Piett/goaws/app"
"github.com/Admiral-Piett/goaws/app/common"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion app/gosns/gosns_create_message_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"testing"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions app/gosns/gosns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"github.com/gorilla/mux"

"github.com/p4tin/goaws/app"
"github.com/p4tin/goaws/app/common"
"github.com/Admiral-Piett/goaws/app"
"github.com/Admiral-Piett/goaws/app/common"
)

func TestListTopicshandler_POST_NoTopics(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions app/gosqs/gosqs.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
log "github.com/sirupsen/logrus"

"github.com/gorilla/mux"
"github.com/p4tin/goaws/app"
"github.com/p4tin/goaws/app/common"
"github.com/Admiral-Piett/goaws/app"
"github.com/Admiral-Piett/goaws/app/common"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion app/gosqs/gosqs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
)

func TestListQueues_POST_NoQueues(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion app/gosqs/message_attributes.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net/http"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion app/gosqs/queue_attributes.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"strings"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion app/gosqs/queue_attributes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"reflect"
"testing"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
)

func TestApplyQueueAttributes(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions app/router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"fmt"

"github.com/gorilla/mux"
sns "github.com/p4tin/goaws/app/gosns"
sqs "github.com/p4tin/goaws/app/gosqs"
sns "github.com/Admiral-Piett/goaws/app/gosns"
sqs "github.com/Admiral-Piett/goaws/app/gosqs"
)

// New returns a new router
Expand Down
4 changes: 2 additions & 2 deletions app/servertest/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"net/http"
"sync"

"github.com/p4tin/goaws/app/router"
"github.com/Admiral-Piett/goaws/app/router"
log "github.com/sirupsen/logrus"

"github.com/p4tin/goaws/app"
"github.com/Admiral-Piett/goaws/app"
"strings"
)

Expand Down
4 changes: 2 additions & 2 deletions app/servertest/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"github.com/aws/aws-sdk-go/service/sqs"
"github.com/aws/aws-sdk-go/service/sqs/sqsiface"
"github.com/gorilla/mux"
"github.com/p4tin/goaws/app"
"github.com/p4tin/goaws/app/router"
"github.com/Admiral-Piett/goaws/app"
"github.com/Admiral-Piett/goaws/app/router"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
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/p4tin/goaws
module github.com/Admiral-Piett/goaws

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion makefile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ run: dep fmt test
go run app/cmd/goaws.go

git-release:
curl --data $(APIJSON) https://api.github.com/repos/p4tin/goaws/releases?access_token=$(GITHUB_API_KEY)
curl --data $(APIJSON) https://api.github.com/repos/Admiral-Piett/goaws/releases?access_token=$(GITHUB_API_KEY)

linux:
GOOS=linux GOARCH=amd64 go build -o goaws_linux_amd64 app/cmd/goaws.go
Expand Down

0 comments on commit b8b2d7b

Please sign in to comment.