Newer
Older
taehui / taehui-fe / src / app / www / systems / want.ts
@Taehui Taehui on 17 Mar 344 bytes 2024-03-17 오후 11:29
import DB from "@/app/www/system/DB";

export const wantEssay = async (
  wantInput: string,
  page: number,
  viewUnit: number,
) => {
  return DB.wantEssay(wantInput, page, viewUnit);
};

export const wantComment = async (
  wantInput: string,
  page: number,
  viewUnit: number,
) => {
  return DB.wantComment(wantInput, page, viewUnit);
};