Skip to content

Commit

Permalink
Fixes repo name across the repository (#98)
Browse files Browse the repository at this point in the history
* Fixes repo name across the repository

* Fix one more link, bump version
  • Loading branch information
RJ Lohan authored and John Tompkins committed Dec 4, 2019
1 parent c8d1276 commit 6310d84
Show file tree
Hide file tree
Showing 36 changed files with 64 additions and 64 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.

We welcome you to use the GitHub issue tracker to report bugs or suggest features.

When filing an issue, please check [existing open](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/issues), or [recently closed](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
When filing an issue, please check [existing open](https://github.com/awslabs/cloudformation-cli-go-plugin/issues), or [recently closed](https://github.com/awslabs/cloudformation-cli-go-plugin/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:

* A reproducible test case or series of steps
Expand Down Expand Up @@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu


## Finding contributions to work on
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/labels/help%20wanted) issues is a great place to start.
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/cloudformation-cli-go-plugin/labels/help%20wanted) issues is a great place to start.


## Code of Conduct
Expand All @@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif

## Licensing

See the [LICENSE](https://github.com/awslabs/aws-cloudformation-rpdk-go-plugin/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
See the [LICENSE](https://github.com/awslabs/cloudformation-cli-go-plugin/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.

We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
4 changes: 2 additions & 2 deletions cfn/callback/callback.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"log"

"github.com/avast/retry-go"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudformation"
"github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface"
Expand Down
2 changes: 1 addition & 1 deletion cfn/callback/callback_notag.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package callback
import (
"log"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudformation"
"github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface"
Expand Down
2 changes: 1 addition & 1 deletion cfn/callback/callback_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"testing"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-sdk-go/service/cloudformation"
"github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface"
)
Expand Down
14 changes: 7 additions & 7 deletions cfn/cfn.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import (
"log"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/callback"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/credentials"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/metrics"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/scheduler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/callback"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/credentials"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/metrics"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/scheduler"

"github.com/aws/aws-lambda-go/lambda"
"github.com/aws/aws-sdk-go/service/cloudformation"
Expand Down
4 changes: 2 additions & 2 deletions cfn/cfn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"testing"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/scheduler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/scheduler"
"github.com/aws/aws-lambda-go/lambdacontext"
"github.com/aws/aws-sdk-go/aws/session"
)
Expand Down
2 changes: 1 addition & 1 deletion cfn/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"github.com/aws/aws-sdk-go/aws/session"
)

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

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"

"github.com/google/go-cmp/cmp"
)
Expand Down
6 changes: 3 additions & 3 deletions cfn/entry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"testing"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/metrics"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/metrics"
)

func TestMarshalling(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions cfn/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package cfn
import (
"encoding/json"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/credentials"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/credentials"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"
"github.com/aws/aws-sdk-go/aws/session"

"gopkg.in/validator.v2"
Expand Down
2 changes: 1 addition & 1 deletion cfn/handler/event.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package handler

import (
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
)

// ProgressEvent represent the progress of CRUD handlers.
Expand Down
2 changes: 1 addition & 1 deletion cfn/handler/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package handler
import (
"testing"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
)

type Props struct {
Expand Down
2 changes: 1 addition & 1 deletion cfn/handler/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/aws/aws-sdk-go/aws/session"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cfn/handler/request_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package handler
import (
"testing"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"

"github.com/google/go-cmp/cmp"
)
Expand Down
2 changes: 1 addition & 1 deletion cfn/metrics/noop_publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"strings"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface"
)
Expand Down
4 changes: 2 additions & 2 deletions cfn/metrics/publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"strings"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface"
Expand Down
4 changes: 2 additions & 2 deletions cfn/metrics/publisher_notag.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface"
Expand Down
6 changes: 3 additions & 3 deletions cfn/reportErr.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"log"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/callback"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/metrics"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/callback"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/metrics"
)

//reportErr is an unexported struct that handles reporting of errors.
Expand Down
4 changes: 2 additions & 2 deletions cfn/response.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cfn

import (
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
)

// response represents a response to the
Expand Down
6 changes: 3 additions & 3 deletions cfn/response_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (

"encoding/json"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
)

func TestMarshalJSON(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cfn/scheduler/noop_scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package scheduler
import (
"log"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-sdk-go/service/cloudwatchevents"
"github.com/aws/aws-sdk-go/service/cloudwatchevents/cloudwatcheventsiface"
)
Expand Down
4 changes: 2 additions & 2 deletions cfn/scheduler/scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"log"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-lambda-go/lambdacontext"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudwatchevents"
Expand Down
4 changes: 2 additions & 2 deletions cfn/scheduler/scheduler_notag.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"log"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/cfnerr"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-lambda-go/lambdacontext"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudwatchevents"
Expand Down
2 changes: 1 addition & 1 deletion cfn/scheduler/scheduler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/logging"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/logging"
"github.com/aws/aws-lambda-go/lambdacontext"
"github.com/aws/aws-sdk-go/service/cloudwatchevents"
"github.com/aws/aws-sdk-go/service/cloudwatchevents/cloudwatcheventsiface"
Expand Down
4 changes: 2 additions & 2 deletions cfn/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cfn
import (
"context"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/scheduler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/scheduler"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface"
Expand Down
2 changes: 1 addition & 1 deletion examples/github-repo/.rpdk-config
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"entrypoint": "handler",
"testEntrypoint": "handler",
"settings": {
"importpath": "github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/examples/github-repo"
"importpath": "github.com/aws-cloudformation/cloudformation-cli-go-plugin/examples/github-repo"
}
}
6 changes: 3 additions & 3 deletions examples/github-repo/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"errors"
"fmt"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/examples/github-repo/cmd/resource"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/examples/github-repo/cmd/resource"
)

/*
Expand Down
4 changes: 2 additions & 2 deletions examples/github-repo/cmd/resource/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"log"
"strings"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"github.com/google/go-github/github"
"golang.org/x/oauth2"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/github-repo/cmd/resource/model.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package resource

import "github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
import "github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"

/*
This file is autogenerated, do not edit;
Expand Down
2 changes: 1 addition & 1 deletion examples/github-repo/example-github-repo.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"typeName": "Example::GitHub::Repo",
"description": "Manages a GitHub Repo",
"sourceUrl": "https://github.com/aws-cloudformation/aws-cloudformation-rpdk.git",
"sourceUrl": "https://github.com/aws-cloudformation/cloudformation-cli.git",
"properties": {
"Name": {
"description": "Name of the repository on GitHub",
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/aws-cloudformation/aws-cloudformation-rpdk-go-plugin
module github.com/aws-cloudformation/cloudformation-cli-go-plugin

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion python/rpdk/go/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging

__version__ = "0.1.1"
__version__ = "0.1.2"

logging.getLogger(__name__).addHandler(logging.NullHandler())
4 changes: 2 additions & 2 deletions python/rpdk/go/templates/main.go.tple
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"fmt"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn"
"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
"{{ path }}"
)

Expand Down
2 changes: 1 addition & 1 deletion python/rpdk/go/templates/stubHandler.go.tple
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package resource
import (
"errors"

"github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/handler"
"github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/handler"
)

{% for method in ("Create", "Read", "Update", "Delete", "List") %}
Expand Down
2 changes: 1 addition & 1 deletion python/rpdk/go/templates/types.go.tple
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package resource

import "github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/cfn/encoding"
import "github.com/aws-cloudformation/cloudformation-cli-go-plugin/cfn/encoding"

/*
This file is autogenerated, do not edit;
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def find_version(*file_paths):
long_description_content_type="text/markdown",
author="Amazon Web Services",
author_email="aws-cloudformation-developers@amazon.com",
url="https://github.com/aws-cloudformation/aws-cloudformation-rpdk-go-plugin/",
url="https://github.com/aws-cloudformation/cloudformation-cli-go-plugin/",
# https://packaging.python.org/guides/packaging-namespace-packages/
packages=["rpdk.go"],
package_dir={"": "python"},
Expand Down

0 comments on commit 6310d84

Please sign in to comment.