Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pengux/godo
- Owner: pengux
- License: mit
- Created: 2014-05-23T03:36:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-28T19:21:14.000Z (over 8 years ago)
- Last Synced: 2024-06-20T22:36:43.693Z (7 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# godo
A wrapper for Digitalocean's API in Go
## Usage
```go
package mainimport (
"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