mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-24 11:00:34 -04:00
13 lines
309 B
Go
13 lines
309 B
Go
package proto
|
|
|
|
import (
|
|
sdkproto "github.com/turbot/steampipe-plugin-sdk/v4/grpc/proto"
|
|
)
|
|
|
|
func SupportedOperationsFromSdk(s *sdkproto.GetSupportedOperationsResponse) *SupportedOperations {
|
|
return &SupportedOperations{
|
|
QueryCache: s.QueryCache,
|
|
MultipleConnections: s.MultipleConnections,
|
|
}
|
|
}
|