mkobaly / teamcity

Golang bindings to TeamCity API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TeamCity API bindings

This is a simple wrapper around the TeamCity API.

GoDoc

Sample usage:

client := teamcity.New("myinstance.example.com", "username", "password")

b, err := client.QueueBuild("Project_build_task", "master", nil)
if err != nil {
	fmt.Printf("You're outta luck: %s\n", err)
	return
}

fmt.Printf("Build: %#v\n", b)

About

Golang bindings to TeamCity API


Languages

Language:Go 100.0%