Add provider functions to provider.Interface with GRPC implementation (#1437)

Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
This commit is contained in:
Christian Mesh
2024-03-28 12:56:58 -04:00
committed by GitHub
parent 6dcc39e107
commit 969a7e0a99
12 changed files with 502 additions and 0 deletions

View File

@@ -147,6 +147,10 @@ func (s simple) ReadDataSource(req providers.ReadDataSourceRequest) (resp provid
return resp
}
func (s simple) CallFunction(r providers.CallFunctionRequest) providers.CallFunctionResponse {
panic("Not Implemented")
}
func (s simple) Close() error {
return nil
}