import { DB } from "../../types/db" import pbClient from "../pbClient" /** * 创建一个新的通知。 * @param {Partial} data - 新通知的数据。 * @returns {Promise} - 返回解析为已创建通知对象的promise。 */ const create = async (data: Partial) => await pbClient.collection("notify").create(data) const notify = { create, } export default notify