Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 317 Bytes

File metadata and controls

14 lines (11 loc) · 317 Bytes

Ulule Api Client

Api Client for Ulule's API (developers.ulule.com), written in Go.

import (
	ulule "github.com/aduermael/ulule-api-client"
)

func main() {
	client := ulule.New(username, userid, apikey)
	projects, err := client.GetProjects(ulule.ProjectFilterSupported)
}