mirror of
https://github.com/wneessen/go-hibp.git
synced 2024-11-09 15:32:52 +01:00
Updated README.md, package description and version number for v1.0.2 release
This commit is contained in:
parent
77e5a4345d
commit
fc0ea3bd48
2 changed files with 4 additions and 4 deletions
|
@ -11,6 +11,5 @@ This Go package provides an simple to use interface to the excellent
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
Have a look at the [GoDocs Reference](https://pkg.go.dev/github.com/wneessen/go-hibp) for details on how to implement
|
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 or check out the examples for the different APIs in the [examples](examples)
|
access to the HIBP API with this package. You will also find GoDoc code examples there.
|
||||||
directory.
|
|
||||||
|
|
3
hibp.go
3
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
|
package hibp
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -12,7 +13,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// Version represents the version of this package
|
// 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
|
// BaseUrl is the base URL for the majority of API calls
|
||||||
const BaseUrl = "https://haveibeenpwned.com/api/v3"
|
const BaseUrl = "https://haveibeenpwned.com/api/v3"
|
||||||
|
|
Loading…
Reference in a new issue