Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pengux/godo

A wrapper for Digitalocean's API in Go
https://github.com/pengux/godo

Last synced: about 1 month ago
JSON representation

A wrapper for Digitalocean's API in Go

Awesome Lists containing this project

README

        

# godo

A wrapper for Digitalocean's API in Go

## Usage
```go
package main

import (
"fmt"

"github.com/pengux/godo"
)

func main() {
do := godo.NewClient([CLIENT_ID], [API_KEY])

fmt.Println(do.GetAllImages())
}
```

## TODO

- Add functional tests
- More documentation
- More examples