16 lines
196 B
Go
16 lines
196 B
Go
|
package apiresponse
|
||
|
|
||
|
type V1BucketListResponse struct {
|
||
|
Response
|
||
|
Data struct {
|
||
|
Buckets map[string]string
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type V1BucketReadResponse struct {
|
||
|
Response
|
||
|
Data struct {
|
||
|
Keys []string
|
||
|
}
|
||
|
}
|