From 023eaaa04cbf2fa69447e2c97f0418427b462c5f Mon Sep 17 00:00:00 2001 From: Kiran Date: Sat, 5 Feb 2022 22:35:56 +0530 Subject: [PATCH] Create and list apps --- pages/api/apps/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pages/api/apps/index.ts b/pages/api/apps/index.ts index 7b55ab4..6beeeb0 100644 --- a/pages/api/apps/index.ts +++ b/pages/api/apps/index.ts @@ -1,7 +1,5 @@ -import { promises as fs } from 'fs'; import type { NextApiRequest, NextApiResponse } from 'next'; -import path from 'path'; -import { apps, metadata } from '../../../services'; +import { apps } from '../../../services'; import type { App, IdPMetadata } from '../../../types'; export default async function handler(