datahub/wherehows-web/mirage/helpers/dataset-platforms.ts

12 lines
305 B
TypeScript
Raw Normal View History

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 };