mirror of
https://github.com/appwrite/appwrite
synced 2026-04-27 08:27:20 +00:00
17 lines
262 B
PHP
17 lines
262 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return [
|
||
|
|
'rest' => [
|
||
|
|
'key' => 'rest',
|
||
|
|
'name' => 'REST',
|
||
|
|
],
|
||
|
|
'graphql' => [
|
||
|
|
'key' => 'graphql',
|
||
|
|
'name' => 'GraphQL',
|
||
|
|
],
|
||
|
|
'realtime' => [
|
||
|
|
'key' => 'realtime',
|
||
|
|
'name' => 'Realtime',
|
||
|
|
],
|
||
|
|
];
|