From 1bab59258e62ae38519b291b085b5f81a20f9759 Mon Sep 17 00:00:00 2001 From: Aaron Sky Date: Fri, 11 Sep 2020 16:10:28 -0400 Subject: [PATCH] Moved asc-go to cidertool org --- .github/CODE_OF_CONDUCT.md | 2 +- .github/CONTRIBUTING.md | 2 +- README.md | 12 ++++++------ asc/doc.go | 6 +++--- examples/invite_user/main.go | 4 ++-- examples/list_builds/main.go | 4 ++-- examples/register_devices/main.go | 4 ++-- examples/sales_finance_reports/main.go | 4 ++-- examples/upload_preview/main.go | 4 ++-- examples/upload_screenshot/main.go | 4 ++-- examples/util/util.go | 2 +- go.mod | 2 +- test/integration/asc_test.go | 2 +- 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md index 5733ef3..b3b7d57 100644 --- a/.github/CODE_OF_CONDUCT.md +++ b/.github/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at aaronsky@skyaaron.com. All +reported by contacting the project team at cidertool@skyaaron.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 3baf293..569ecb5 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -8,7 +8,7 @@ This project abides by the [Contributor Covenant Code of Conduct](./CODE_OF_COND ## Reporting Issues -Bugs, enhancements, and questions should be filed as [issues](https://github.com/aaronsky/asc-go/issues) on this repository. If you're reporting a bug, please provide as much supporting context as possible such as your operating system, Go version, and anything else that might be relevant to the bug. For anything else, explain what you're trying to achieve and what is missing from the package that you had expected to aid your efforts. +Bugs, enhancements, and questions should be filed as [issues](https://github.com/cidertool/asc-go/issues) on this repository. If you're reporting a bug, please provide as much supporting context as possible such as your operating system, Go version, and anything else that might be relevant to the bug. For anything else, explain what you're trying to achieve and what is missing from the package that you had expected to aid your efforts. ## Submitting a Pull Request diff --git a/README.md b/README.md index 451455b..9143e14 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # asc-go -[![PkgGoDev](https://pkg.go.dev/badge/github.com/aaronsky/asc-go/asc)](https://pkg.go.dev/github.com/aaronsky/asc-go/asc) -[![Test Status](https://github.com/aaronsky/asc-go/workflows/Run%20Tests/badge.svg)](https://github.com/aaronsky/asc-go/actions?query=workflow%253A%2522Run+Tests%2522) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/cidertool/asc-go/asc)](https://pkg.go.dev/github.com/cidertool/asc-go/asc) +[![Test Status](https://github.com/cidertool/asc-go/workflows/Run%20Tests/badge.svg)](https://github.com/cidertool/asc-go/actions?query=workflow%253A%2522Run+Tests%2522) asc-go is a Go client library for accessing Apple's [App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi). @@ -10,7 +10,7 @@ asc-go is a Go client library for accessing Apple's [App Store Connect API](http This project uses Go Modules. ```go -import "github.com/aaronsky/asc-go/asc" +import "github.com/cidertool/asc-go/asc" ``` Construct a new App Store Connect client, then use the various services on the client to access different parts of the App Store Connect API. For example: @@ -26,7 +26,7 @@ apps, _, err := client.Apps.ListApps(&asc.ListAppsQuery{ The client is divided into logical chunks closely corresponding to the layout and structure of Apple's own documentation at . -For more sample code snippets, head over to the [examples](https://github.com/aaronsky/asc-go/tree/master/examples) directory. +For more sample code snippets, head over to the [examples](https://github.com/cidertool/asc-go/tree/master/examples) directory. ### Authentication @@ -36,7 +36,7 @@ You may find that the code snippet above will always fail due to a lack of autho import ( "time" - "github.com/aaronsky/asc-go/asc" + "github.com/cidertool/asc-go/asc" ) func main() { @@ -100,7 +100,7 @@ for { } ``` -For complete usage of asc-go, see the full [package docs](https://pkg.go.dev/github.com/aaronsky/asc-go/asc). +For complete usage of asc-go, see the full [package docs](https://pkg.go.dev/github.com/cidertool/asc-go/asc). ## Contributing diff --git a/asc/doc.go b/asc/doc.go index 5dd6235..11bf068 100644 --- a/asc/doc.go +++ b/asc/doc.go @@ -5,7 +5,7 @@ Usage Import the package as you normally would: - import "github.com/aaronsky/asc-go/asc" + import "github.com/cidertool/asc-go/asc" Construct a new App Store Connect client, then use the various services on the client to access different parts of the App Store Connect API. For example: @@ -20,7 +20,7 @@ access different parts of the App Store Connect API. For example: The client is divided into logical chunks closely corresponding to the layout and structure of Apple's own documentation at https://developer.apple.com/documentation/appstoreconnectapi. -For more sample code snippets, head over to the https://github.com/aaronsky/asc-go/tree/master/examples directory. +For more sample code snippets, head over to the https://github.com/cidertool/asc-go/tree/master/examples directory. Authentication @@ -33,7 +33,7 @@ to look a little more like this: import ( "time" - "github.com/aaronsky/asc-go/asc" + "github.com/cidertool/asc-go/asc" ) func main() { diff --git a/examples/invite_user/main.go b/examples/invite_user/main.go index f2139da..41a8aa5 100644 --- a/examples/invite_user/main.go +++ b/examples/invite_user/main.go @@ -7,8 +7,8 @@ import ( "log" "strings" - "github.com/aaronsky/asc-go/asc" - "github.com/aaronsky/asc-go/examples/util" + "github.com/cidertool/asc-go/asc" + "github.com/cidertool/asc-go/examples/util" ) var ( diff --git a/examples/list_builds/main.go b/examples/list_builds/main.go index 895facc..6042fc1 100644 --- a/examples/list_builds/main.go +++ b/examples/list_builds/main.go @@ -6,8 +6,8 @@ import ( "fmt" "log" - "github.com/aaronsky/asc-go/asc" - "github.com/aaronsky/asc-go/examples/util" + "github.com/cidertool/asc-go/asc" + "github.com/cidertool/asc-go/examples/util" ) var ( diff --git a/examples/register_devices/main.go b/examples/register_devices/main.go index 2d57810..9a52641 100644 --- a/examples/register_devices/main.go +++ b/examples/register_devices/main.go @@ -6,8 +6,8 @@ import ( "fmt" "log" - "github.com/aaronsky/asc-go/asc" - "github.com/aaronsky/asc-go/examples/util" + "github.com/cidertool/asc-go/asc" + "github.com/cidertool/asc-go/examples/util" ) var ( diff --git a/examples/sales_finance_reports/main.go b/examples/sales_finance_reports/main.go index 5cba37f..648b97e 100644 --- a/examples/sales_finance_reports/main.go +++ b/examples/sales_finance_reports/main.go @@ -8,8 +8,8 @@ import ( "log" "os" - "github.com/aaronsky/asc-go/asc" - "github.com/aaronsky/asc-go/examples/util" + "github.com/cidertool/asc-go/asc" + "github.com/cidertool/asc-go/examples/util" ) var ( diff --git a/examples/upload_preview/main.go b/examples/upload_preview/main.go index fb92302..e7b0ec1 100644 --- a/examples/upload_preview/main.go +++ b/examples/upload_preview/main.go @@ -9,8 +9,8 @@ import ( "log" "os" - "github.com/aaronsky/asc-go/asc" - "github.com/aaronsky/asc-go/examples/util" + "github.com/cidertool/asc-go/asc" + "github.com/cidertool/asc-go/examples/util" ) var ( diff --git a/examples/upload_screenshot/main.go b/examples/upload_screenshot/main.go index f6f83db..e58cdd2 100644 --- a/examples/upload_screenshot/main.go +++ b/examples/upload_screenshot/main.go @@ -9,8 +9,8 @@ import ( "log" "os" - "github.com/aaronsky/asc-go/asc" - "github.com/aaronsky/asc-go/examples/util" + "github.com/cidertool/asc-go/asc" + "github.com/cidertool/asc-go/examples/util" ) var ( diff --git a/examples/util/util.go b/examples/util/util.go index e1206b7..b119640 100644 --- a/examples/util/util.go +++ b/examples/util/util.go @@ -10,7 +10,7 @@ import ( "log" "time" - "github.com/aaronsky/asc-go/asc" + "github.com/cidertool/asc-go/asc" ) var ( diff --git a/go.mod b/go.mod index f9fb4a1..663125a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/aaronsky/asc-go +module github.com/cidertool/asc-go go 1.13 diff --git a/test/integration/asc_test.go b/test/integration/asc_test.go index ea77e87..f809e05 100644 --- a/test/integration/asc_test.go +++ b/test/integration/asc_test.go @@ -8,7 +8,7 @@ import ( "os" "time" - "github.com/aaronsky/asc-go/asc" + "github.com/cidertool/asc-go/asc" ) const (