This gist contains a first draft of a client library for easy-bag-store. The design follows the REST API that easy-bag-store exposes itself.
Every call in this client library results in an execute() call that does the actual calling and which returns the Response
object containing a reponse code and either a corresponding error message or the resulting object itself.
The following calls can be made with this library:
Vault.status() // returns StringVault.listBags(<[]|all|inactive>) // returns Seq[UUID]Vault.bag(<uuid>).list() // returns Seq[Path]