openpanel/packages/cli/templates/resource/index.ts.hbs
2024-02-05 10:23:04 +01:00

11 lines
205 B
Handlebars

export * from "./list";
{{#ifIn actions "create"}}
export * from "./create";
{{/ifIn}}
{{#ifIn actions "edit"}}
export * from "./edit";
{{/ifIn}}
{{#ifIn actions "show"}}
export * from "./show";
{{/ifIn}}