From b11b37f11fa45ab149e8a88a183b70f077c0f48e Mon Sep 17 00:00:00 2001 From: Srivahni Chivukula Date: Fri, 14 Feb 2020 05:11:08 -0800 Subject: Add Composite Application API Implemented Composite application API and added create, get and delete handlers for the composite applications. Formatted Project related .go files Issue-ID: MULTICLOUD-994 Signed-off-by: Srivahni Chivukula Change-Id: I7cef1a2c75f8cb39f397dcbb3f5d7bb2a57b4a72 --- 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 f46fe910..087caba3 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) + httpRouter := api.NewRouter(nil, nil) loggedRouter := handlers.LoggingHandler(os.Stdout, httpRouter) log.Println("Starting Kubernetes Multicloud API") -- cgit 1.2.3-korg