Skip to content
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Features

## Install:

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

## Examples:

Expand All @@ -26,7 +26,7 @@ import (
"bytes"
"fmt"

"github.com/ledongthuc/pdf"
"github.com/casibase/pdf"
)

func main() {
Expand Down Expand Up @@ -57,7 +57,7 @@ package main
import (
"fmt"

"github.com/ledongthuc/pdf"
"github.com/casibase/pdf"
)

func main() {
Expand Down Expand Up @@ -94,7 +94,7 @@ import (
"fmt"
"os"

"github.com/ledongthuc/pdf"
"github.com/casibase/pdf"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/read_plain_text/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"

"github.com/ledongthuc/pdf"
"github.com/casibase/pdf"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/read_text_with_styles/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/ledongthuc/pdf"
"github.com/casibase/pdf"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/ledongthuc/pdf
module github.com/casibase/pdf

go 1.24.1
go 1.23.0
2 changes: 1 addition & 1 deletion pdfpasswd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"log"
"os"

"github.com/ledongthuc/pdf"
"github.com/casibase/pdf"
)

var (
Expand Down
Loading