Skip to content

Commit

Permalink
Moved asc-go to cidertool org
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsky committed Sep 11, 2020
1 parent e786d4e commit 1bab592
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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).

Expand All @@ -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:
Expand All @@ -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 <https://developer.apple.com/documentation/appstoreconnectapi>.

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

Expand All @@ -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() {
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions asc/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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() {
Expand Down
4 changes: 2 additions & 2 deletions examples/invite_user/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions examples/list_builds/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions examples/register_devices/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions examples/sales_finance_reports/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions examples/upload_preview/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions examples/upload_screenshot/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion examples/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"log"
"time"

"github.com/aaronsky/asc-go/asc"
"github.com/cidertool/asc-go/asc"
)

var (
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/aaronsky/asc-go
module github.com/cidertool/asc-go

go 1.13

Expand Down
2 changes: 1 addition & 1 deletion test/integration/asc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"time"

"github.com/aaronsky/asc-go/asc"
"github.com/cidertool/asc-go/asc"
)

const (
Expand Down

0 comments on commit 1bab592

Please sign in to comment.