remove unused import

This commit is contained in:
Jordan Higuera Higuera 2023-08-04 10:13:23 -07:00
parent 895ef8e60f
commit 8747331c43
No known key found for this signature in database
GPG Key ID: B07085A04D061948

View File

@ -1,6 +1,5 @@
import {prisma} from "@/lib/api/db"; import {prisma} from "@/lib/api/db";
import {LinkRequestQuery, Sort} from "@/types/global"; import {LinkRequestQuery, Sort} from "@/types/global";
import * as process from "process";
export default async function getLink(userId: number, body: string) { export default async function getLink(userId: number, body: string) {
const query: LinkRequestQuery = JSON.parse(decodeURIComponent(body)); const query: LinkRequestQuery = JSON.parse(decodeURIComponent(body));