mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-30 18:26:58 +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 };
|