tachybase_todo/packages/presets/hera-rental/src/server/index.ts

13 lines
339 B
TypeScript
Raw Normal View History

import PresetTachyBase from '@tachybase/preset-tachybase';
import _ from 'lodash';
export class PluginRental extends PresetTachyBase {
#builtInPlugins = ['approval-mobile', 'core', 'rental', 'mobile-client'];
get builtInPlugins() {
return super.builtInPlugins.concat(this.#builtInPlugins);
}
}
export default PresetTachyBase;