browserutils / kooky

Go code to read cookies from browser cookie stores.
MIT License
204 stars 41 forks source link

go.mod file still referencing github.com/zellyn/kooky #70

Closed preethamn closed 7 months ago

preethamn commented 7 months ago

In go.mod file we are still referencing github.com/zellyn/kooky because of which a new go mod init followed with go mod tidy will fail when importing kooky project to the new project. Will get error - github.com/browserutils/kooky: github.com/browserutils/kooky@v0.2.0: parsing go.mod: module declares its path as: github.com/zellyn/kooky but was required as: github.com/browserutils/kooky

This is due to in https://github.com/browserutils/kooky/blob/master/cmd/kooky/kooky.go#L11 we still refer to github.com/zellyn/kooky

preethamn commented 7 months ago

fixed with https://github.com/browserutils/kooky/pull/71