Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

post 2.0.0 fixes #16

Merged
merged 12 commits into from
Dec 30, 2023
Prev Previous commit
Next Next commit
fix docs for new go.mod approach
c-robinson committed Dec 30, 2023
commit d1e982341814a9ee29854fde97e8b1535aed014e
4 changes: 2 additions & 2 deletions iana/README.md
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ are contained within an reserved IP address block.
## Installing

```sh
go get -u github.com/c-robinson/iplib/v2/iana
go get -u github.com/c-robinson/iplib/v2
```

## Using IANA
@@ -31,7 +31,7 @@ import (
"net"

"github.com/c-robinson/iplib/v2"
"github.com/c-robinson/iplib/iana/v2"
"github.com/c-robinson/iplib/v2/iana"
)

func main() {
4 changes: 2 additions & 2 deletions iid/README.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ given interface on a network, and is unique _within_ that network.
## Installing

```sh
go get -u github.com/c-robinson/iplib/v2/iid
go get -u github.com/c-robinson/iplib/v2
```

## Using IID
@@ -29,7 +29,7 @@ import (
"fmt"
"net"

"github.com/c-robinson/iplib/iid/v2"
"github.com/c-robinson/iplib/v2/iid"
)

func main() {