import * as collectionClient from "@/client/collection.client" export async function add(paperId: number, title: string): Promise { return collectionClient.add(paperId, title) } export async function remove(id: number): Promise { return collectionClient.remove(id) } export async function isCollected(paperId: number): Promise { return collectionClient.isCollected(paperId) }