diff options
Diffstat (limited to 'src/orchestrator/pkg/module/module.go')
-rw-r--r-- | src/orchestrator/pkg/module/module.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/orchestrator/pkg/module/module.go b/src/orchestrator/pkg/module/module.go index a94a4207..f80ff55b 100644 --- a/src/orchestrator/pkg/module/module.go +++ b/src/orchestrator/pkg/module/module.go @@ -21,6 +21,7 @@ type Client struct { Project *ProjectClient CompositeApp *CompositeAppClient Controller *ControllerClient + Cluster *ClusterClient // Add Clients for API's here } @@ -30,6 +31,7 @@ func NewClient() *Client { c.Project = NewProjectClient() c.CompositeApp = NewCompositeAppClient() c.Controller = NewControllerClient() + c.Cluster = NewClusterClient() // Add Client API handlers here return c } |