feat: server kotlin/java/rest/graphql

This commit is contained in:
Torsten Dittmann
2023-10-11 21:04:21 +02:00
parent 8574de6439
commit 3f8e61373d
3 changed files with 17 additions and 4 deletions

View File

@@ -39,7 +39,11 @@ export enum Platform {
ServerPhp = 'server-php',
ServerPython = 'server-python',
ServerRuby = 'server-ruby',
ServerSwift = 'server-swift'
ServerSwift = 'server-swift',
ServerAndroidKotlin = 'server-android-kotlin',
ServerAndroidJava = 'server-android-java',
ServerGraphql = 'server-graphql',
ServerRest = 'server-rest',
}
export const platformMap: Record<Language | string, string> = {
@@ -58,6 +62,10 @@ export const platformMap: Record<Language | string, string> = {
[Platform.ServerPython]: 'Python',
[Platform.ServerRuby]: 'Ruby',
[Platform.ServerSwift]: 'Swift',
[Platform.ServerAndroidKotlin]: 'Android (Kotlin)',
[Platform.ServerAndroidJava]: 'Android (Java)',
[Platform.ServerGraphql]: 'GraphQL',
[Platform.ServerRest]: 'REST',
sh: 'Shell',
js: 'JavaScript',
jsx: 'React',