Newer
Older
taehui / taehui-fe / src / app / www / logic / want.ts
@Taehui Taehui on 17 Mar 344 bytes 2024-03-18 오전 12:51
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);
};