Erant-OldApp/api/routes/game/details.php

14 lines
146 B
PHP
Raw Normal View History

2022-09-02 13:47:58 +00:00
<?php
return [
"post" => function($data, $headers, $db) {
return $db->select('games4', '*', [
'url' => $data["gameurl"]
])[0];
}
];