Build 0.1.2

Add env and init command
Update documentation
This commit is contained in:
René Preuß
2021-07-23 15:10:46 +02:00
parent feab09389a
commit 331881b2cc
10 changed files with 429 additions and 77 deletions

View File

@@ -37,4 +37,13 @@ class Client
return new Result($response);
}
public function getStorageZones(): Result
{
return $this->request('GET', 'storagezone', [
RequestOptions::HEADERS => [
'AccessKey' => config('bunny.api.access_key'),
],
]);
}
}