Skip to content

Commit

Permalink
Update urls
Browse files Browse the repository at this point in the history
  • Loading branch information
sdgandhi committed Mar 7, 2021
1 parent b3c3982 commit 2f46de7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
2. `go install cmd/kooky/kooky.go`
3. `kooky --help`

[![PkgGoDev](https://pkg.go.dev/badge/github.com/zellyn/kooky)](https://pkg.go.dev/github.com/zellyn/kooky)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/newnoetic/kooky)](https://pkg.go.dev/github.com/newnoetic/kooky)
[![Go Report Card](https://goreportcard.com/badge/zellyn/kooky)](https://goreportcard.com/report/zellyn/kooky)
![Lines of code](https://img.shields.io/tokei/lines/github/zellyn/kooky)
[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)
Expand Down Expand Up @@ -54,8 +54,8 @@ package main
import (
"fmt"

"github.com/zellyn/kooky"
_ "github.com/zellyn/kooky/allbrowsers" // register cookie store finders!
"github.com/newnoetic/kooky"
_ "github.com/newnoetic/kooky/allbrowsers" // register cookie store finders!
)

func main() {
Expand All @@ -79,7 +79,7 @@ import (
"log"
"os"

"github.com/zellyn/kooky/chrome"
"github.com/newnoetic/kooky/chrome"
)

func main() {
Expand All @@ -105,7 +105,7 @@ import (
"log"
"os"

"github.com/zellyn/kooky/safari"
"github.com/newnoetic/kooky/safari"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions chrome/chrome.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package chrome
import (
"runtime"

"github.com/zellyn/kooky"
"github.com/zellyn/kooky/internal/chrome"
"github.com/newnoetic/kooky"
"github.com/newnoetic/kooky/internal/chrome"
)

func ReadCookies(filename string, filters ...kooky.Filter) ([]*kooky.Cookie, error) {
Expand Down
2 changes: 1 addition & 1 deletion chrome_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/zellyn/kooky/chrome"
"github.com/newnoetic/kooky/chrome"
)

//on macOS:
Expand Down

0 comments on commit 2f46de7

Please sign in to comment.