Skip to content

Commit d39642e

Browse files
authored
feat: update import paths and switch Go version to 1.23 (#2)
1 parent 97f040f commit d39642e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Features
1010

1111
## Install:
1212

13-
`go get -u github.com/ledongthuc/pdf`
13+
`go get -u github.com/casibase/pdf`
1414

1515
## Examples:
1616

@@ -26,7 +26,7 @@ import (
2626
"bytes"
2727
"fmt"
2828

29-
"github.com/ledongthuc/pdf"
29+
"github.com/casibase/pdf"
3030
)
3131

3232
func main() {
@@ -57,7 +57,7 @@ package main
5757
import (
5858
"fmt"
5959

60-
"github.com/ledongthuc/pdf"
60+
"github.com/casibase/pdf"
6161
)
6262

6363
func main() {
@@ -94,7 +94,7 @@ import (
9494
"fmt"
9595
"os"
9696

97-
"github.com/ledongthuc/pdf"
97+
"github.com/casibase/pdf"
9898
)
9999

100100
func main() {

examples/read_plain_text/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"fmt"
66

7-
"github.com/ledongthuc/pdf"
7+
"github.com/casibase/pdf"
88
)
99

1010
func main() {

examples/read_text_with_styles/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/ledongthuc/pdf"
6+
"github.com/casibase/pdf"
77
)
88

99
func main() {

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/ledongthuc/pdf
1+
module github.com/casibase/pdf
22

3-
go 1.24.1
3+
go 1.23.0

pdfpasswd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"log"
1313
"os"
1414

15-
"github.com/ledongthuc/pdf"
15+
"github.com/casibase/pdf"
1616
)
1717

1818
var (

0 commit comments

Comments
 (0)