export default async function getProject(id: string): Promise<GetProject> {
  return { data: await Project.findOne({ _id: id }).lean() }
}