From 858438ab8005b6a6902fdb0bbedd84f4c905c93d Mon Sep 17 00:00:00 2001 From: Philipp Heuer Date: Mon, 5 Feb 2024 19:48:45 +0100 Subject: [PATCH] feat: add consts for kotlin and rust --- const.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/const.go b/const.go index ed9ae9d..10698fb 100644 --- a/const.go +++ b/const.go @@ -7,10 +7,12 @@ type ProjectLanguage string const ( LanguageGolang ProjectLanguage = "go" LanguageJava ProjectLanguage = "java" + LanguageKotlin ProjectLanguage = "kotlin" LanguageJavascript ProjectLanguage = "javascript" LanguageTypescript ProjectLanguage = "typescript" LanguagePython ProjectLanguage = "python" LanguagePHP ProjectLanguage = "php" + LanguageRust ProjectLanguage = "rust" ) type ProjectBuildSystem string @@ -29,6 +31,7 @@ const ( BuildSystemMkdocs ProjectBuildSystem = "mkdocs" BuildSystemComposer ProjectBuildSystem = "composer" BuildSystemDotNet ProjectBuildSystem = "dotnet" + BuildSystemCargo ProjectBuildSystem = "cargo" ) type ProjectBuildSystemSyntax string