Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
jira
✓ github.com/andygrunwald/go-jira
Creates a Jira client with basic authentication.
package main
import (
"fmt"
"github.com/andygrunwald/go-jira"
)
func main() {
tp := jira.BasicAuthTransport{
Username: "user",
Password: "pass",
}
client, err := jira.NewClient(tp.Client(), "https://your-domain.atlassian.net")
if err != nil {
panic(err)
}
fmt.Println(client)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.17.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.