mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 05:18:18 +00:00
14 lines
274 B
TypeScript
14 lines
274 B
TypeScript
![]() |
import { ApiStatus } from 'wherehows-web/utils/api/shared';
|
||
|
|
||
|
const getSearchResults = function(_: any, request: any) {
|
||
|
return {
|
||
|
status: ApiStatus.OK,
|
||
|
result: {
|
||
|
keywords: request.queryParams.keyword,
|
||
|
data: []
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export { getSearchResults };
|