mirror of
https://github.com/detleph/server.git
synced 2026-09-04 00:26:03 +02:00
[create-pull-request] push formatted files
This commit is contained in:
@@ -1,16 +1,16 @@
|
|||||||
import { PrismaClient } from '@prisma/client'
|
import { PrismaClient } from "@prisma/client";
|
||||||
|
|
||||||
const prisma = new PrismaClient()
|
const prisma = new PrismaClient();
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
// ... you will write your Prisma Client queries here
|
// ... you will write your Prisma Client queries here
|
||||||
console.log("Hello world!!")
|
console.log("Hello world!!");
|
||||||
}
|
}
|
||||||
|
|
||||||
main()
|
main()
|
||||||
.catch((e) => {
|
.catch((e) => {
|
||||||
throw e
|
throw e;
|
||||||
})
|
})
|
||||||
.finally(async () => {
|
.finally(async () => {
|
||||||
await prisma.$disconnect()
|
await prisma.$disconnect();
|
||||||
})
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user