From 3aeb9884c88956c02fd6991eee99cf213359d8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Thu, 19 May 2022 09:37:31 +0000 Subject: [PATCH] Add runtimes to CLi --- templates/cli/lib/questions.js.twig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/cli/lib/questions.js.twig b/templates/cli/lib/questions.js.twig index 061601fd5..e9a6ee623 100644 --- a/templates/cli/lib/questions.js.twig +++ b/templates/cli/lib/questions.js.twig @@ -55,6 +55,14 @@ const getEntrypoint = (runtime) => { return 'main.rs'; case 'swift': return 'Sources/swift-5.5/main.swift'; + case 'cpp': + return 'src/index.cc'; + case 'dotnet': + return 'src/Index.cs'; + case 'java': + return 'src/Index.java'; + case 'kotlin': + return 'src/Index.kt'; } return undefined;