fix: server java enums

This commit is contained in:
Torsten Dittmann
2023-10-11 22:28:17 +02:00
parent 9748089903
commit 9fb9ba0c31
3 changed files with 9 additions and 9 deletions

View File

@@ -40,8 +40,8 @@ export enum Platform {
ServerPython = 'server-python',
ServerRuby = 'server-ruby',
ServerSwift = 'server-swift',
ServerAndroidKotlin = 'server-kotlin',
ServerAndroidJava = 'server-java',
ServerKotlin = 'server-kotlin',
ServerJava = 'server-java',
ServerGraphql = 'server-graphql',
ServerRest = 'server-rest',
}
@@ -62,8 +62,8 @@ export const platformMap: Record<Language | string, string> = {
[Platform.ServerPython]: 'Python',
[Platform.ServerRuby]: 'Ruby',
[Platform.ServerSwift]: 'Swift',
[Platform.ServerAndroidKotlin]: 'Kotlin',
[Platform.ServerAndroidJava]: 'Java',
[Platform.ServerKotlin]: 'Kotlin',
[Platform.ServerJava]: 'Java',
[Platform.ServerGraphql]: 'GraphQL',
[Platform.ServerRest]: 'REST',
sh: 'Shell',