mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-09 23:25:33 -06:00
8 lines
208 B
Go
8 lines
208 B
Go
|
package response
|
||
|
|
||
|
// ProviderList is the response structure for a pageable list of providers.
|
||
|
type ProviderList struct {
|
||
|
Meta PaginationMeta `json:"meta"`
|
||
|
Providers []*Provider `json:"providers"`
|
||
|
}
|