mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-19 15:42:09 +00:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
![]() |
import { IFunctionRouteHandler } from 'wherehows-web/typings/ember-cli-mirage';
|
||
|
import { ApiStatus } from 'wherehows-web/utils/api/shared';
|
||
|
|
||
|
const getDatasetPlatforms = function(this: IFunctionRouteHandler) {
|
||
|
return {
|
||
|
platforms: [],
|
||
|
status: ApiStatus.OK
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export { getDatasetPlatforms };
|