mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-07 16:57:52 +00:00
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
![]() |
import { noop } from 'lodash';
|
||
|
|
||
|
/**
|
||
|
* Initializer currently only exists to create a named reference that other initializers can refer to.
|
||
|
* For example, specifying order of initialization using the Ember attributes `before` / `after` in the exported object
|
||
|
*/
|
||
|
export const initialize = noop;
|
||
|
|
||
|
export default {
|
||
|
initialize: noop
|
||
|
};
|