12 lines
371 B
Go
12 lines
371 B
Go
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation and Dapr Contributors.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package configuration
|
|
|
|
// GetResponse is the request object for getting configuration.
|
|
type GetResponse struct {
|
|
Items []*Item `json:"items"`
|
|
}
|