Create an admin endpoint to add an item to the database. Endpoint: `/createMenuItem`. Use PrismaORM and follow the definition below. ```typescript interface Item { title: string; description: string; price: number; image: string; } ```
Create an admin endpoint to add an item to the database.
Endpoint:
/createMenuItem.Use PrismaORM and follow the definition below.