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, } }