mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
10 lines
150 B
Go
10 lines
150 B
Go
package interfaces
|
|
|
|
type GrpcClientPool interface {
|
|
WithConfigPath
|
|
Init() error
|
|
NewClient() error
|
|
GetClient() (GrpcClient, error)
|
|
SetSize(int)
|
|
}
|