mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-30 21:27:12 +01:00
13 lines
437 B
TypeScript
13 lines
437 B
TypeScript
import { Request, Response } from "express";
|
|
import prisma from "../../../lib/prisma";
|
|
import { Prisma } from "@prisma/client";
|
|
import { Article, Category } from "@prisma/client";
|
|
import { ResponseError } from "../../../types/responseErrors";
|
|
|
|
export default async function handler(req: Request, res: Response) {
|
|
res.setHeader("Content-Type", "application/json");
|
|
|
|
await prisma.article.create({ data: req.body });
|
|
console.log();
|
|
}
|