aboutsummaryrefslogtreecommitdiff
path: root/weed/wdclient/wdclient.go
blob: b16e239fb810523bbcb7b46e27686253ec89c4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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,

	}
}