overflow_server_app/backend/client.go

7 lines
127 B
Go
Raw Normal View History

2017-08-23 09:19:21 +00:00
package backend
type PooledClient interface {
Exec(target string, method string, params []string) (string, error)
Close()
}