mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-16 05:34:54 +00:00
12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import { IFunctionRouteHandler } from 'wherehows-web/typings/ember-cli-mirage';
|
|
import { ApiStatus } from 'wherehows-web/utils/api/shared';
|
|
|
|
const getDatasetProperties = function(this: IFunctionRouteHandler) {
|
|
return {
|
|
properties: {},
|
|
status: ApiStatus.OK
|
|
};
|
|
};
|
|
|
|
export { getDatasetProperties };
|