export const initDB = async (): Promise<void> => {
  const { initPostgresDB } = await import('./postgres');

  await initPostgresDB();
};
