Skip to content
This repository was archived by the owner on May 6, 2024. It is now read-only.

Commit f2fd8fb

Browse files
committed
Renamed package to github.com/awslabs/fargatecli
1 parent 43aa617 commit f2fd8fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+208
-171
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
build:
44
docker:
55
- image: circleci/golang:1.10
6-
working_directory: /go/src/github.com/jpignata/fargate
6+
working_directory: /go/src/github.com/awslabs/fargatecli
77
steps:
88
- checkout
99

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@
9292
fail to be issued immediately after request would cause crashes in lb info and
9393
lb list as the resource record was never generated.
9494

95-
[issue-2]: https://github.com/jpignata/fargate/issues/2
96-
[issue-6]: https://github.com/jpignata/fargate/issues/6
97-
[issue-8]: https://github.com/jpignata/fargate/issues/8
98-
[issue-11]: https://github.com/jpignata/fargate/issues/11
99-
[issue-14]: https://github.com/jpignata/fargate/issues/14
100-
[issue-22]: https://github.com/jpignata/fargate/issues/22
95+
[issue-2]: https://github.com/awslabs/fargatecli/issues/2
96+
[issue-6]: https://github.com/awslabs/fargatecli/issues/6
97+
[issue-8]: https://github.com/awslabs/fargatecli/issues/8
98+
[issue-11]: https://github.com/awslabs/fargatecli/issues/11
99+
[issue-14]: https://github.com/awslabs/fargatecli/issues/14
100+
[issue-22]: https://github.com/awslabs/fargatecli/issues/22

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ email and Google Hangouts at [email protected].
3333
- Install the source code from GitHub
3434

3535
```console
36-
go get github.com/jpignata/fargate
36+
go get github.com/awslabs/fargatecli
3737
```
3838

3939
- Run `dep ensure` to install required dependencies
4040

4141
```console
42-
cd $GOPATH/src/github.com/jpignata/fargate
42+
cd $GOPATH/src/github.com/awslabs/fargatecli
4343
dep ensure
4444
```
4545

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Fargate CLI
22

33
[![CircleCI](https://circleci.com/gh/jpignata/fargate/tree/master.svg?style=svg)](https://circleci.com/gh/jpignata/fargate/tree/master)
4-
[![GoDoc](https://godoc.org/github.com/jpignata/fargate?status.svg)](https://godoc.org/github.com/jpignata/fargate)
4+
[![GoDoc](https://godoc.org/github.com/awslabs/fargatecli?status.svg)](https://godoc.org/github.com/awslabs/fargatecli)
55

66
## Screencast
77

acm/certificate_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/aws/aws-sdk-go/aws"
1212
awsacm "github.com/aws/aws-sdk-go/service/acm"
1313
"github.com/golang/mock/gomock"
14-
"github.com/jpignata/fargate/acm/mock/sdk"
14+
"github.com/awslabs/fargatecli/acm/mock/sdk"
1515
)
1616

1717
func TestValidateAlias(t *testing.T) {

acm/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package acm
22

3-
//go:generate mockgen -package client -destination=mock/client/client.go github.com/jpignata/fargate/acm Client
3+
//go:generate mockgen -package client -destination=mock/client/client.go github.com/awslabs/fargatecli/acm Client
44
//go:generate mockgen -package sdk -source ../vendor/github.com/aws/aws-sdk-go/service/acm/acmiface/interface.go -destination=mock/sdk/acmiface.go github.com/aws/aws-sdk-go/service/acm/acmiface ACMAPI
55

66
import (

acm/mock/client/client.go

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cloudwatchlogs/log_group.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/aws/aws-sdk-go/aws"
88
"github.com/aws/aws-sdk-go/aws/awserr"
99
awscwl "github.com/aws/aws-sdk-go/service/cloudwatchlogs"
10-
"github.com/jpignata/fargate/console"
10+
"github.com/awslabs/fargatecli/console"
1111
)
1212

1313
type GetLogsInput struct {

cmd/certificate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"errors"
55

6-
"github.com/jpignata/fargate/acm"
6+
"github.com/awslabs/fargatecli/acm"
77
"github.com/spf13/cobra"
88
)
99

cmd/certificate_destroy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cmd
22

33
import (
4-
"github.com/jpignata/fargate/acm"
4+
"github.com/awslabs/fargatecli/acm"
55
"github.com/spf13/cobra"
66
)
77

0 commit comments

Comments
 (0)