Categorygithub.com/liamg/hackerone
modulepackage
0.0.8
Repository: https://github.com/liamg/hackerone.git
Documentation: pkg.go.dev

# README

hackerone

HackerOne API Client in Go.

Current supports the entire Hackers API. Support for the Customers API may be added in future if there is any demand.

Please see the documentation for further information.

Usage Example

package main

import (
	"context"
	"fmt"

	"github.com/liamg/hackerone"
)

func main() {
	h1 := hackerone.New("your-username-here", "your-api-key-here")
	reports, _, _ := h1.Hackers.GetReports(context.TODO(), nil)
	for _, report := range reports {
		fmt.Println(report.Id)
	}
}

# Packages

No description provided by the author

# Functions

No description provided by the author

# Structs

No description provided by the author