Thanks for a great, simple library. It was a breeze to get started with, and I really like how extensible you've been able to make this.
I'm interested in spinning up a PostgreSQL cluster and managing it with the DigitalOcean API (see the API docs for managing databases). From my testing, retrieving available databases and a single one by ID works just as you've done for droplets:
;; in the bottom of digitalocean/v2/core.clj
(def databases
"Get all databases"
(generic :get :databases))
(def get-database
"Get a single database by ID"
databases)
Are you interested in supporting managing databases? If so, what are your requirements?
I'm asking because I see that digitalocean.v2.core/delete-droplet is present in the source here, but not not in the Clojars version, and that there's been a while since the last time a JAR was pushed.
Hello!
Thanks for a great, simple library. It was a breeze to get started with, and I really like how extensible you've been able to make this.
I'm interested in spinning up a PostgreSQL cluster and managing it with the DigitalOcean API (see the API docs for managing databases). From my testing, retrieving available databases and a single one by ID works just as you've done for droplets:
Are you interested in supporting managing databases? If so, what are your requirements?
Teodor