subman-nextjs/src/app/lib/create.ts

13 lines
214 B
TypeScript
Raw Normal View History

2024-06-17 11:12:55 +00:00
"use server"
import prisma from "./db"
export async function createStory(data) {
console.log("CREATESTORY CALLED")
const id = await prisma.story.create({
data: {
title: "test",
word_count: 500
}
})
}