Newer
Older
taehui / taehui-www / src / systems / want.ts
@Taehui Taehui on 20 Nov 340 bytes 2023-11-20 오후 9:36
import DB from "src/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);
};