(id: string)
| 73 | "https://github.com/Mrinank-Bhowmick/python-beginner-projects"; |
| 74 | |
| 75 | export function getProject(id: string): Project | undefined { |
| 76 | return PROJECTS.find((p) => p.id === id); |
| 77 | } |
| 78 | |
| 79 | /** GitHub URL of a project's source folder in the repo. */ |
| 80 | export function projectFolderUrl(p: Project): string { |