You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
373 B
15 lines
373 B
package core |
|
|
|
import ( |
|
"github.com/nacos-group/nacos-sdk-go/clients/config_client" |
|
"github.com/nacos-group/nacos-sdk-go/clients/naming_client" |
|
) |
|
|
|
type nacosClient struct { |
|
client naming_client.INamingClient |
|
config config_client.IConfigClient |
|
} |
|
|
|
func NewNacosClient(c naming_client.INamingClient, n config_client.IConfigClient) nacosClient { |
|
return nacosClient{c, n} |
|
}
|
|
|