15 lines
185 B
Go
15 lines
185 B
Go
package apiresponse
|
|
|
|
type V1BucketsGET struct {
|
|
APIResponse
|
|
Data struct {
|
|
Buckets map[string]string
|
|
}
|
|
}
|
|
|
|
type V1BucketGET struct {
|
|
APIResponse
|
|
Data struct {
|
|
Keys []string
|
|
}
|
|
}
|