mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
16 lines
272 B
Go
16 lines
272 B
Go
package wdclient
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type SeaweedClient struct {
|
|
*MasterClient
|
|
}
|
|
|
|
func NewSeaweedClient(ctx context.Context, clientName string, masters []string) *SeaweedClient {
|
|
return &SeaweedClient{
|
|
MasterClient: NewMasterClient(ctx, clientName, masters),
|
|
}
|
|
}
|