7 lines
127 B
Go
7 lines
127 B
Go
|
package backend
|
||
|
|
||
|
type PooledClient interface {
|
||
|
Exec(target string, method string, params []string) (string, error)
|
||
|
Close()
|
||
|
}
|