aboutsummaryrefslogtreecommitdiffstats
path: root/src/orchestrator/pkg/module/module.go
diff options
context:
space:
mode:
authorRitu Sood <Ritu.Sood@intel.com>2020-02-24 23:39:28 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-24 23:39:28 +0000
commitbc6c2db66326040062fca588ea5a23e963b3b784 (patch)
treef9863b97405fd0a95e2a6b72b7418bb7763c0fad /src/orchestrator/pkg/module/module.go
parent219a7eab4129b3e500bcaf6c62819011580895ba (diff)
parent95e9ddd082cb2ccd28d9d33ea2f8607bd5c793f5 (diff)
Merge "Add Controller Register API to Orchestrator"
Diffstat (limited to 'src/orchestrator/pkg/module/module.go')
-rw-r--r--src/orchestrator/pkg/module/module.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/orchestrator/pkg/module/module.go b/src/orchestrator/pkg/module/module.go
index d03e5ffb..a94a4207 100644
--- a/src/orchestrator/pkg/module/module.go
+++ b/src/orchestrator/pkg/module/module.go
@@ -20,6 +20,7 @@ package module
type Client struct {
Project *ProjectClient
CompositeApp *CompositeAppClient
+ Controller *ControllerClient
// Add Clients for API's here
}
@@ -28,6 +29,7 @@ func NewClient() *Client {
c := &Client{}
c.Project = NewProjectClient()
c.CompositeApp = NewCompositeAppClient()
+ c.Controller = NewControllerClient()
// Add Client API handlers here
return c
}