change!: renommer apiresponse.V1BucketList à V1BucketsGET

Fait partie d'une suite de changements pour normaliser noms d'objets

BREAKING: renommer `V1BucketList` à `V1BucketsGET`
This commit is contained in:
Victor Lacasse-Beaudoin 2023-11-20 15:26:11 -05:00
parent 7bf489315e
commit 8e40050f81
5 changed files with 19 additions and 19 deletions

View file

@ -56,9 +56,9 @@ func (h *V1Handler) HandleV1Seed(c echo.Context) error {
return c.JSON(response.StatusCode, response)
}
// HandleV1BucketList affiche les buckets permis par server.documents.buckets, qui existent.
func (h *V1Handler) HandleV1BucketList(c echo.Context) error {
var response apiresponse.V1BucketList
// V1BucketsGET affiche les buckets permis par server.documents.buckets, qui existent.
func (h *V1Handler) V1BucketsGET(c echo.Context) error {
var response apiresponse.V1BucketsGET
var buckets = make(map[string]string)