Skip to content

Commit

Permalink
remove redundant v1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kachit committed Mar 10, 2023
1 parent 180adab commit f8e1ad0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ https://developer.apple.com/documentation/appstoreconnectapi/download_sales_and_

## Download
```shell
go get -u github.com/kachit/appstore-sdk-go/v1
go get -u github.com/kachit/appstore-sdk-go
```

## Usage
Expand All @@ -28,7 +28,7 @@ package main
import (
"fmt"
"time"
appstore_sdk "github.com/kachit/appstore-sdk-go/v1"
appstore_sdk "github.com/kachit/appstore-sdk-go"
)

func main(){
Expand Down
3 changes: 1 addition & 2 deletions coverage.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
go test -coverprofile=coverage.out ./...
go tool cover -html=coverage.out -o coverage.html
go test -coverprofile=coverage.out ./... && go tool cover -html=coverage.out -o coverage.html
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/kachit/appstore-sdk-go/v1
module github.com/kachit/appstore-sdk-go

go 1.14

Expand Down

0 comments on commit f8e1ad0

Please sign in to comment.