Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# DocuSign eSignature RestApi v2 and v2.1(Beta) for Go

[![GoDoc](https://godoc.org/github.com/jfcote87/esign?status.svg)](https://godoc.org/github.com/jfcote87/esign)
[![GoDoc](https://godoc.org/github.com/pwaterz/esign?status.svg)](https://godoc.org/github.com/pwaterz/esign)

esign provides Go packages for interacting with DocuSign's eSignature RestApi and
has been created using the lastest published swagger definition.
Definitions for call payloads and return values are found in {VERSIONID}/model/model.go file.
Docusign has split the API into major categories, and each category has a corresponding package
in the v2 and v2.1 directory.
Definitions for call payloads and return values are found in {VERSIONID}/model/model.go file.
Docusign has split the API into major categories, and each category has a corresponding package
in the v2 and v2.1 directory.

The package requires Go 1.7 or above and has been tested with Go 1.9-1.12.

Expand Down Expand Up @@ -55,9 +55,9 @@ executed via a Do(context.Context) function. A context must be passwed for all
Create envelope

```go
import "github.com/jfcote87/esign"
import "github.com/jfcote87/esign/v2/envelope"
import "github.com/jfcote87/esign/v2/model"
import "github.com/pwaterz/esign"
import "github.com/pwaterz/esign/v2/envelope"
import "github.com/pwaterz/esign/v2/model"

sv := envelopes.New(credential)

Expand Down
4 changes: 2 additions & 2 deletions click/click.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// must be initialized with a scop of click.manageApi documentation for these
// functions may be found at:
// https://docs.docusign.com/esign/guide/authentication/legacy_auth.htmlpackage
package click // import "github.com/jfcote87/esign/click"
package click // import "github.com/pwaterz/esign/click"

import (
"context"
Expand All @@ -16,7 +16,7 @@ import (
"strings"
"time"

"github.com/jfcote87/esign"
"github.com/pwaterz/esign"
)

var clickV1 = &esign.APIVersion{
Expand Down
4 changes: 2 additions & 2 deletions click/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"fmt"
"log"

"github.com/jfcote87/esign"
"github.com/jfcote87/esign/click"
"github.com/pwaterz/esign"
"github.com/pwaterz/esign/click"
)

func Example() {
Expand Down
2 changes: 1 addition & 1 deletion connect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

"github.com/jfcote87/esign"
"github.com/pwaterz/esign"
)

func TestXML(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ eSignatature REST API as defined in the published api.
Api documentation: https://developers.docusign.com/

*/
package esign // import "github.com/jfcote87/esign"
package esign // import "github.com/pwaterz/esign"
6 changes: 3 additions & 3 deletions esign_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ import (
"time"

"github.com/jfcote87/ctxclient"
"github.com/jfcote87/esign"
"github.com/jfcote87/esign/v2.1/folders"
"github.com/jfcote87/esign/v2.1/templates"
"github.com/jfcote87/oauth2"
"github.com/jfcote87/testutils"
"github.com/pwaterz/esign"
"github.com/pwaterz/esign/v2.1/folders"
"github.com/pwaterz/esign/v2.1/templates"
)

type TestCred struct {
Expand Down
8 changes: 4 additions & 4 deletions examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import (
"log"
"os"

"github.com/jfcote87/esign"
"github.com/jfcote87/esign/v2.1/envelopes"
"github.com/jfcote87/esign/v2.1/folders"
"github.com/jfcote87/esign/v2.1/model"
"github.com/pwaterz/esign"
"github.com/pwaterz/esign/v2.1/envelopes"
"github.com/pwaterz/esign/v2.1/folders"
"github.com/pwaterz/esign/v2.1/model"
)

func ExampleOAuth2Config() {
Expand Down
2 changes: 1 addition & 1 deletion gen-esign/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
)

var (
basePkg = flag.String("basepkg", "github.com/jfcote87/esign", "root package in gopath")
basePkg = flag.String("basepkg", "github.com/pwaterz/esign", "root package in gopath")
baseDir = flag.String("src", ".", "src directory")
templDir = flag.String("template", "gen-esign/templates", "directory containing output templates.")
buildFlag = flag.Bool("build", false, "Compile generated packages.")
Expand Down
10 changes: 5 additions & 5 deletions gen-esign/templates/model.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@
// Code generated by gen-esign; DO NOT EDIT.

// Package model provides definitions for all input
// and output parameters types found in DocuSign's
// and output parameters types found in DocuSign's
// OpenAPI (swagger) file.
//
// Api documentation may be found at:
// https://developers.docusign.com/esign-rest-api/{{$docPrefix := .DocPrefix}}{{$docPrefix}}reference
package model // import "github.com/jfcote87/esign/{{.VersionID}}/model"{{$defMap := .DefMap}}{{$fldOverrides := .FldOverrides}}
package model // import "github.com/pwaterz/esign/{{.VersionID}}/model"{{$defMap := .DefMap}}{{$fldOverrides := .FldOverrides}}

import (
"fmt"
"strings"
"time"
)
)

// DSBool is used to fix problem of capitalized and quoted
// DSBool is used to fix problem of capitalized and quoted
// booleans in json returned from DocuSign. Unmarshals
// "True" and "true" as true, any other value returns false
type DSBool bool

// UnmarshalJSON checks for "True" or "true"
func (d *DSBool) UnmarshalJSON(b []byte) error {

*d = DSBool(b[0] == 0x22 && (b[1] == 0x54 || b[1] == 0x74))
return nil
}
Expand Down
4 changes: 2 additions & 2 deletions gen-esign/templates/service.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
// )
// ...
// {{.Package}}Service := {{.Package}}.New(esignCredential)
package {{.Package}} // import "github.com/jfcote87/esign/{{$verPrefix}}/{{.Package}}"
package {{.Package}} // import "github.com/pwaterz/esign/{{$verPrefix}}/{{.Package}}"

import ({{range .Packages}}
{{.}}{{end}}
)

// Service implements DocuSign {{.Service}} Category API operations
type Service struct {
credential esign.Credential
credential esign.Credential
}

// New initializes a {{.Package}} service using cred to authorize ops.
Expand Down
15 changes: 9 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
module github.com/jfcote87/esign
module github.com/pwaterz/esign

go 1.14

require (
cloud.google.com/go v0.43.0 // indirect
cloud.google.com/go v0.44.3 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/jfcote87/ctxclient v0.5.1
github.com/jfcote87/oauth2 v0.2.2
github.com/jfcote87/oauth2 v0.2.3
github.com/jfcote87/testutils v0.1.0
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80 // indirect
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e // indirect
google.golang.org/grpc v1.22.1 // indirect
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // indirect
google.golang.org/api v0.9.0 // indirect
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
google.golang.org/grpc v1.23.0 // indirect
)
35 changes: 20 additions & 15 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
cloud.google.com/go v0.40.0/go.mod h1:Tk58MuI9rbLMKlAjeO/bDnteAx7tX2gJIXw4T5Jwlro=
cloud.google.com/go v0.43.0 h1:banaiRPAM8kUVYneOSkhgcDsLzEvL25FinuiSZaH/2w=
cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg=
cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
cloud.google.com/go v0.44.3 h1:0sMegbmn/8uTwpNkB0q9cLEpZ2W5a6kl+wtBQgPWBJQ=
cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
Expand All @@ -19,23 +21,23 @@ github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5y
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY=
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
github.com/google/go-cmp v0.3.1 h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg=
github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=
github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5 h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/golang-lru v0.5.3 h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=
github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=
github.com/jfcote87/ctxclient v0.5.1 h1:FnL5Y1yhUfFyZzoCDkZAJRSoEGuh0+vDCdEvjUYm0LU=
github.com/jfcote87/ctxclient v0.5.1/go.mod h1:f7zOFa74RLJBqXyENHpoOerIWyJ+vYSISilQt4EzSYk=
github.com/jfcote87/oauth2 v0.2.2 h1:eqRvOcF0QYmCwC6LbODOLo5++lEeQoImLuFfbHak2is=
github.com/jfcote87/oauth2 v0.2.2/go.mod h1:DWdh/z6vDUwVcQ8D/oFL8db+kKFlphYCEoDbAZhTdsA=
github.com/jfcote87/oauth2 v0.2.3 h1:bZtLPKeTvpNR3jzvBxciaz3FqBwYN9L6fAJXHpsTNAA=
github.com/jfcote87/oauth2 v0.2.3/go.mod h1:DWdh/z6vDUwVcQ8D/oFL8db+kKFlphYCEoDbAZhTdsA=
github.com/jfcote87/testutils v0.0.0-20190527035656-94af7a2b3405/go.mod h1:QFUFPaD1I3QKdKq4d0f1+RokX2LF15Vbgk0lXvTb8HY=
github.com/jfcote87/testutils v0.1.0 h1:JOl5eOK6cLDWs6sLEtlaayWrvmtXTrO8bIrveajXxvc=
github.com/jfcote87/testutils v0.1.0/go.mod h1:ELCUYlS5UgdA/ZXCq/b+ScC6d566nmkorcmOgWU0C90=
Expand Down Expand Up @@ -65,8 +67,8 @@ golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn
golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80 h1:Ao/3l156eZf2AW5wK8a7/smtodRU+gha3+BeqJ69lRk=
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 h1:fHDIZ2oxGnUZRN6WgWFCbYBjH9uqVPRCUVUDhs0wnbA=
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0=
Expand All @@ -84,8 +86,8 @@ golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e h1:D5TXcfTk7xF7hvieo4QErS3qqCB4teTffacDWr7CI+0=
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a h1:aYOabOQFp6Vj6W1F80affTUvO9UxmJRx8K0gsfABByQ=
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=
Expand All @@ -105,8 +107,10 @@ golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgw
golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4=
google.golang.org/api v0.7.0 h1:9sdfJOzWlkqPltHAuzT2Cp+yrBeY1KRVYgms8soxMwM=
google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
google.golang.org/api v0.9.0 h1:jbyannxz0XFD3zdjgrSUsaJbgpH4eTrkdhRChkHPfO8=
google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
Expand All @@ -120,13 +124,14 @@ google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRn
google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s=
google.golang.org/genproto v0.0.0-20190620144150-6af8c5fc6601/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s=
google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610 h1:Ygq9/SRJX9+dU0WCIICM8RkWvDw03lvB77hrhJnpxfU=
google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 h1:gSJIx1SDwno+2ElGhA4+qG2zF97qiUzTM+rQ0klBOcE=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
google.golang.org/grpc v1.22.1 h1:/7cs52RnTJmD43s3uxzlq2U7nqVTd/37viQwMrMNlOM=
google.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.23.0 h1:AzbTB6ux+okLTzP8Ru1Xs41C303zdcfEht7MQnYJt5A=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
Expand Down
4 changes: 2 additions & 2 deletions legacy/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"fmt"
"log"

"github.com/jfcote87/esign/legacy"
"github.com/jfcote87/esign/v2/folders"
"github.com/pwaterz/esign/legacy"
"github.com/pwaterz/esign/v2/folders"
)

func Example_config() {
Expand Down
4 changes: 2 additions & 2 deletions legacy/legacy.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"net/url"

"github.com/jfcote87/ctxclient"
"github.com/jfcote87/esign"
"github.com/jfcote87/esign/v2/model"
"github.com/pwaterz/esign"
"github.com/pwaterz/esign/v2/model"
)

// Documentation: https://docs.docusign.com/esign/
Expand Down
2 changes: 1 addition & 1 deletion oauth2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"net/http"
"testing"

"github.com/jfcote87/esign"
"github.com/jfcote87/oauth2"
"github.com/jfcote87/testutils"
"github.com/pwaterz/esign"
)

const tokenSuccessResponse = `{
Expand Down
12 changes: 6 additions & 6 deletions v2.1/accounts/accounts.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions v2.1/billing/billing.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading