elasticstream/source/elastic/teardown.go

11 lines
129 B
Go
Raw Normal View History

2024-10-07 15:25:13 +05:30
package elastic
import (
"context"
)
// close the client
2024-10-07 16:26:41 +05:30
func (c *Client) Teardown(ctx context.Context) error {
2024-10-07 15:25:13 +05:30
return nil
}