package
0.0.0-20200514090939-2e3d182c29b9
Repository: https://github.com/sttts/sttts-bot.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

bugzilla

Golang client for bugzilla API

list bugs

client, err := bugzilla.NewClient(bugzillaURL, bugzillaUser, bugzillaPassword)
if err != nil {
	return err
}
client.BugList(limit, offset)

bug details for #444

client, err := bugzilla.NewClient(bugzillaURL, bugzillaUser, bugzillaPassword)
if err != nil {
	return err
}
client.BugInfo(444)

add comment to #444

client, err := bugzilla.NewClient(bugzillaURL, bugzillaUser, bugzillaPassword)
if err != nil {
	return err
}
client.AddComment(444, "Hello word!"))