mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
14 lines
283 B
PHP
14 lines
283 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gazelle;
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
|
|
$prefix = trim(urldecode($_GET['query'] ?? ''));
|
|
echo json_encode([
|
|
'query' => $prefix,
|
|
'suggestions' => new Manager\Artist()->autocompleteList($prefix),
|
|
]);
|