go-azuredevops

module
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 25, 2021 License: MIT

README

go-azuredevops

GoDoc Quality Gate Status Go Report Card

go-azuredevops is a Go client library for accessing the Azure DevOps API. This is very much work in progress, so at the moment supports a small subset of the API.

Services

There is partial implementation for the following services

  • Boards
  • Builds
  • Favourites
  • Iterations
  • Pull Requests
  • Work Items

Usage

import "github.com/benmatselby/go-azuredevops/azuredevops

Construct a new Azure DevOps Client

v := azuredevops.NewClient(account, project, token)

Get a list of iterations

iterations, error := v.Iterations.List(team)
if error != nil {
    fmt.Println(error)
}

for index := 0; index < len(iterations); index++ {
    fmt.Println(iterations[index].Name)
}

Directories

Path Synopsis
Package azuredevops is a Go client library for accessing the Azure DevOps API.
Package azuredevops is a Go client library for accessing the Azure DevOps API.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL