11 lines
125 B
Go
11 lines
125 B
Go
|
package elastic
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
// close the client
|
||
|
func (c *Client) Teardown(context.Context) error {
|
||
|
return nil
|
||
|
}
|