mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-23 08:38:02 +00:00
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
![]() |
import { Server } from 'ember-cli-mirage';
|
||
|
import { setup } from '@datahub/shared/mirage-addon/mirage-config';
|
||
|
|
||
|
/**
|
||
|
* Default handler for Mirage config
|
||
|
* @export
|
||
|
* @param {Server} this the Mirage server instance
|
||
|
*/
|
||
|
export default function(this: Server): void {
|
||
|
setup(this);
|
||
|
}
|