diff --git a/README.md b/README.md index 07eeb6c..d6faba9 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,5 @@ This Go package provides an simple to use interface to the excellent ## Usage -Have a look at the [GoDocs Reference](https://pkg.go.dev/github.com/wneessen/go-hibp) for details on how to implement -access to the HIBP API with this package or check out the examples for the different APIs in the [examples](examples) -directory. +Check out the [GoDocs Reference](https://pkg.go.dev/github.com/wneessen/go-hibp) for details on how to implement +access to the HIBP API with this package. You will also find GoDoc code examples there. diff --git a/hibp.go b/hibp.go index 22ace5e..882609d 100644 --- a/hibp.go +++ b/hibp.go @@ -1,3 +1,4 @@ +// Package hibp provides Go binding to all 3 APIs of the "Have I been Pwned" by Troy Hunt package hibp import ( @@ -12,7 +13,7 @@ import ( ) // Version represents the version of this package -const Version = "1.0.1" +const Version = "1.0.2" // BaseUrl is the base URL for the majority of API calls const BaseUrl = "https://haveibeenpwned.com/api/v3"