aboutsummaryrefslogtreecommitdiffstats
path: root/src/ncm/pkg/module/module.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/ncm/pkg/module/module.go')
-rw-r--r--src/ncm/pkg/module/module.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ncm/pkg/module/module.go b/src/ncm/pkg/module/module.go
index c1c24510..a9950901 100644
--- a/src/ncm/pkg/module/module.go
+++ b/src/ncm/pkg/module/module.go
@@ -18,7 +18,9 @@ package module
// Client for using the services in the orchestrator
type Client struct {
- Cluster *ClusterClient
+ Cluster *ClusterClient
+ Network *NetworkClient
+ ProviderNet *ProviderNetClient
// Add Clients for API's here
}
@@ -26,6 +28,8 @@ type Client struct {
func NewClient() *Client {
c := &Client{}
c.Cluster = NewClusterClient()
+ c.Network = NewNetworkClient()
+ c.ProviderNet = NewProviderNetClient()
// Add Client API handlers here
return c
}