Skip to content

Commit 9cd556a

Browse files
author
anshuo
committed
"更新依赖并修复时间解析格式 (dstotijn#52)"
1 parent 1047c4d commit 9cd556a

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"testing"
1414
"time"
1515

16-
"github.com/dstotijn/go-notion"
1716
"github.com/google/go-cmp/cmp"
1817
"github.com/google/go-cmp/cmp/cmpopts"
18+
"github.com/onshuo/go-notion"
1919
)
2020

2121
type mockRoundtripper struct {

examples/create-comment/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os"
1212
"time"
1313

14-
"github.com/dstotijn/go-notion"
14+
"github.com/onshuo/go-notion"
1515
"github.com/sanity-io/litter"
1616
)
1717

examples/create-page/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ import (
55
"context"
66
"encoding/json"
77
"flag"
8+
"github.com/dstotijn/go-notion"
89
"io"
910
"log"
1011
"net/http"
1112
"os"
1213
"time"
1314

14-
"github.com/dstotijn/go-notion"
15+
"github.com/onshuo/go-notion"
1516
"github.com/sanity-io/litter"
1617
)
1718

examples/list-comments/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os"
1212
"time"
1313

14-
"github.com/dstotijn/go-notion"
14+
"github.com/onshuo/go-notion"
1515
"github.com/sanity-io/litter"
1616
)
1717

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/dstotijn/go-notion
1+
module github.com/onshuo/go-notion
22

33
go 1.19
44

time_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/dstotijn/go-notion"
98
"github.com/google/go-cmp/cmp"
9+
"github.com/onshuo/go-notion"
1010
)
1111

1212
func mustParseDateTime(value string) notion.DateTime {

0 commit comments

Comments
 (0)