seaweedfs/weed/wdclient/wdclient.go
2018-07-28 02:10:32 -07:00

20 lines
310 B
Go

package wdclient
import (
"context"
)
type SeaweedClient struct {
ctx context.Context
Master string
ClientName string
}
func NewSeaweedClient(ctx context.Context, clientName string, masters []string) *SeaweedClient {
return &SeaweedClient{
ctx: ctx,
ClientName: clientName,
}
}