export default async function deleteProject(id: string): Promise<DeleteProject> {
  return { data: await Project.findOneAndDelete({ _id: id }) }
}