Erant-OldApp/api/routes/gamedetails.php

13 lines
128 B
PHP
Raw Normal View History

2022-09-01 15:22:56 +00:00
<?php
return [
2022-09-01 15:44:33 +00:00
"get" => function($data, $headers, $db) {
2022-09-02 13:34:29 +00:00
var_dump($db);
2022-09-01 15:22:56 +00:00
return [
"message" => "hello api"
];
}
2022-09-01 15:44:33 +00:00
2022-09-01 15:22:56 +00:00
];