aboutsummaryrefslogtreecommitdiff
path: root/server/src/bootstrap.ts
blob: 12abc99075b973c0bfc1040b7daa0878e2dfb010 (plain) (blame)
1
2
3
4
5
6
7
import type { Core } from '@strapi/strapi';

const bootstrap = ({ strapi }: { strapi: Core.Strapi }) => {
  // bootstrap phase
};

export default bootstrap;