lazarus / lz-string-go

Port of the javascript LZString compression/decompression algorithm in Go.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect module path

deitrix opened this issue · comments

Please fix go.mod so that the module path is correct. This is preventing me from importing the module into my project and giving me the following error when issuing go get -u github.com/austinh115/lz-string-go

go: downloading github.com/austinh115/lz-string-go v0.0.0-20210415205647-9ede4c0014d0
go get: github.com/austinh115/lz-string-go@none updating to
        github.com/austinh115/lz-string-go@v0.0.0-20210415205647-9ede4c0014d0: parsing go.mod:
        module declares its path as: lz-string-go
                but was required as: github.com/austinh115/lz-string-go

Current go.mod:

module lz-string-go

go 1.16

Proposed go.mod:

module github.com/austinh115/lz-string-go

go 1.16

Done, feel free to pr next time

Much appreciated, thanks you