Skip to content

Commit

Permalink
Merge pull request #1 from vseinstrumentiru/migrate-to-vi-repo
Browse files Browse the repository at this point in the history
Migrate to vi repo
  • Loading branch information
seacomandor authored Jun 23, 2019
2 parents 4d74662 + 68d58ae commit 3a781e5
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 15 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# SDK для интеграции с SOAP сервисами транспортной компании DPD
[![Build Status](https://travis-ci.com/seacomandor/dpd.svg?branch=master)](https://travis-ci.com/seacomandor/dpd)
[![Coverage Status](https://coveralls.io/repos/github/seacomandor/dpd/badge.svg?branch=master)](https://coveralls.io/github/seacomandor/dpd?branch=master)
[![GoDoc reference](https://godoc.org/github.com/seacomandor/dpd?status.svg)](https://godoc.org/github.com/seacomandor/dpd)
[![GoDoc reference](https://godoc.org/github.com/vseinstrumentiru/dpd?status.svg)](https://godoc.org/github.com/vseinstrumentiru/dpd)

Roadmap
- [ ] Web служба "Георгафия DPD"
Expand Down
2 changes: 1 addition & 1 deletion calculateRequestBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package dpd
import (
"time"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

//Request of calculate delivery cost
Expand Down
2 changes: 1 addition & 1 deletion calculateRequestBuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

func TestNewCity(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package dpd

import (
"github.com/fiorix/wsdl2go/soap"
dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

//Client to call DPD SOAP api methods
Expand Down
3 changes: 1 addition & 2 deletions client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import (
"testing"

"github.com/fiorix/wsdl2go/soap"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

func ExampleNewDPDClient() {
Expand Down
2 changes: 1 addition & 1 deletion geographyRequestBuilder.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package dpd

import dpdSoap "github.com/seacomandor/dpd/soap"
import dpdSoap "github.com/vseinstrumentiru/dpd/soap"

//Request list of self delivery points with their restrictions
type ParcelShopRequest dpdSoap.DpdParcelShopRequest
Expand Down
2 changes: 1 addition & 1 deletion geographyRequestBuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

func TestNewParcelShopRequest(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/seacomandor/dpd
module github.com/vseinstrumentiru/dpd

require github.com/fiorix/wsdl2go v1.4.6
2 changes: 1 addition & 1 deletion orderRequestBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package dpd
import (
"time"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

// Запрос на создание заказа
Expand Down
2 changes: 1 addition & 1 deletion orderRequestBuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"
"time"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

func createEmptyOrderRequest() *CreateOrderRequest {
Expand Down
2 changes: 1 addition & 1 deletion trackingRequestBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package dpd
import (
"time"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

//Запрос на трекинг по номеру заказа клиента
Expand Down
2 changes: 1 addition & 1 deletion trackingRequestBuilder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

dpdSoap "github.com/seacomandor/dpd/soap"
dpdSoap "github.com/vseinstrumentiru/dpd/soap"
)

func TestNewClientOrderRequest(t *testing.T) {
Expand Down

0 comments on commit 3a781e5

Please sign in to comment.