From 8e0c4c63e5a014c95805f16d30a64cd53ddc7385 Mon Sep 17 00:00:00 2001 From: Dileep Ranganathan Date: Wed, 19 Feb 2020 16:19:18 -0800 Subject: Composite Profile API and Handler Implemented Composite Profile API and handler, adding create, get and delete handlers for the composite profile. Issue-ID: MULTICLOUD-997 Signed-off-by: Eric Multanen Signed-off-by: Dileep Ranganathan Change-Id: Iab105cf88ef4635038cd36e90f3251bc900b2faf --- src/orchestrator/cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/orchestrator/cmd') diff --git a/src/orchestrator/cmd/main.go b/src/orchestrator/cmd/main.go index 9296a54c..0385416e 100644 --- a/src/orchestrator/cmd/main.go +++ b/src/orchestrator/cmd/main.go @@ -47,7 +47,7 @@ func main() { log.Fatalln("Exiting...") } - httpRouter := api.NewRouter(nil, nil, nil, nil, nil, nil, nil, nil) + httpRouter := api.NewRouter(nil, nil, nil, nil, nil, nil, nil, nil, nil) loggedRouter := handlers.LoggingHandler(os.Stdout, httpRouter) log.Println("Starting Kubernetes Multicloud API") -- cgit 1.2.3-korg