This commit is contained in:
Jesse Winton
2024-10-04 17:27:50 -04:00
parent 3891931261
commit 4448a4c3b8
3 changed files with 25 additions and 4 deletions

View File

@@ -43,6 +43,7 @@ export enum Platform {
ClientGraphql = 'client-graphql',
ClientRest = 'client-rest',
ServerNodeJs = 'server-nodejs',
ServerNextJs = 'server-nextjs',
ServerPython = 'server-python',
ServerDart = 'server-dart',
ServerPhp = 'server-php',
@@ -70,6 +71,7 @@ export const platformMap: Record<Language | string, string> = {
[Platform.ServerDeno]: 'Deno',
[Platform.ServerDotNet]: '.NET',
[Platform.ServerNodeJs]: 'Node.js',
[Platform.ServerNextJs]: 'Next.js',
[Platform.ServerPhp]: 'PHP',
[Platform.ServerPython]: 'Python',
[Platform.ServerRuby]: 'Ruby',