Versions in this module Expand all Collapse all v0 v0.19.0 May 27, 2026 Changes in this version + func LoadInstances(dir string) ([]tracker.Instance, error) + func LoadInstancesWithLookup(dir string, lookup config.EnvLookup) ([]tracker.Instance, error) + func LoadInstancesWithResolver(dir string, lookup config.EnvLookup, resolver config.SecretResolveFunc) ([]tracker.Instance, error) + type Client struct + func New(baseURL, token string) *Client + func (c *Client) AddComment(ctx context.Context, issueKey string, body string) (*tracker.Comment, error) + func (c *Client) AssignIssue(ctx context.Context, key string, userID string) error + func (c *Client) CreateIssue(ctx context.Context, issue *tracker.Issue) (*tracker.Issue, error) + func (c *Client) DeleteIssue(ctx context.Context, key string) error + func (c *Client) EditIssue(ctx context.Context, key string, opts tracker.EditOptions) (*tracker.Issue, error) + func (c *Client) GetCurrentUser(ctx context.Context) (string, error) + func (c *Client) GetIssue(ctx context.Context, key string) (*tracker.Issue, error) + func (c *Client) ListComments(ctx context.Context, issueKey string) ([]tracker.Comment, error) + func (c *Client) ListIssues(ctx context.Context, opts tracker.ListOptions) ([]tracker.Issue, error) + func (c *Client) ListStatuses(_ context.Context, _ string) ([]tracker.Status, error) + func (c *Client) SetHTTPDoer(doer apiclient.HTTPDoer) + func (c *Client) TransitionIssue(ctx context.Context, key string, targetStatus string) error + type Config struct + Description string + Name string + Projects []string + Role string + Safe bool + Token string + URL string + func LoadConfigs(dir string) ([]Config, error)