Add Close() to GCPStorage binding (#1111)

Co-authored-by: Artur Souza <artursouza.ms@outlook.com>
This commit is contained in:
Simon Leet 2021-09-02 09:51:50 -07:00 committed by GitHub
parent 9bcf71d62a
commit 6400db8717
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -99,3 +99,7 @@ func (g *GCPStorage) Invoke(req *bindings.InvokeRequest) (*bindings.InvokeRespon
return nil, nil
}
func (g *GCPStorage) Close() error {
return g.client.Close()
}