Skip to content

Commit

Permalink
Merge pull request #46 from itchyny/go-mod
Browse files Browse the repository at this point in the history
support Go modules
  • Loading branch information
Pham-Gia-Huong authored Apr 26, 2022
2 parents d8c46a8 + 272790c commit 5fe8f2e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ This software is licensed under [the BSD 2-clause license][bsd2].

To import this package:

import "github.com/kintone/go-kintone"
import "github.com/kintone-labs/go-kintone"

Visit the docs on [pkg.go.dev][pkggodev].

[kintone]: https://www.kintone.com/
[APIen]: https://developer.kintone.io/hc/en-us
[APIja]: https://developer.cybozu.io/hc/ja
[bsd2]: http://opensource.org/licenses/BSD-2-Clause
[pkggodev]: https://pkg.go.dev/github.com/kintone/go-kintone
[pkggodev]: https://pkg.go.dev/github.com/kintone-labs/go-kintone

## Copyright

Expand Down
4 changes: 2 additions & 2 deletions app.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (f UpdateKey) MarshalJSON() ([]byte, error) {
// import (
// "appengine"
// "appengine/urlfetch"
// "github.com/kintone/go-kintone"
// "github.com/kintone-labs/go-kintone"
// "net/http"
// )
//
Expand All @@ -103,7 +103,7 @@ func (f UpdateKey) MarshalJSON() ([]byte, error) {
// import (
// "net/http"
// "net/url"
// "github.com/kintone/go-kintone"
// "github.com/kintone-labs/go-kintone"
// )
//
// func main() {
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ See https://developer.kintone.io for API specs.
import (
"log"
"github.com/kintone/go-kintone"
"github.com/kintone-labs/go-kintone"
)
...
app := &kintone.App{
Expand Down
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/kintone-labs/go-kintone

go 1.17

0 comments on commit 5fe8f2e

Please sign in to comment.