diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-02-24 23:39:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-24 23:39:28 +0000 |
commit | bc6c2db66326040062fca588ea5a23e963b3b784 (patch) | |
tree | f9863b97405fd0a95e2a6b72b7418bb7763c0fad /src/orchestrator/pkg/module/module.go | |
parent | 219a7eab4129b3e500bcaf6c62819011580895ba (diff) | |
parent | 95e9ddd082cb2ccd28d9d33ea2f8607bd5c793f5 (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.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 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 } |