export default async function fetchOwnCodes(project: string):
  Promise<FetchOwnCodes> {
  return { data: await Code.find({ project }).lean() }
}