MCPcopy Create free account
hub / github.com/Mrinank-Bhowmick/python-beginner-projects / getCatalogProject

Function getCatalogProject

web/src/lib/catalog.ts:12–14  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

10export const RUNNABLE = CATALOG.filter((p) => p.runnable);
11
12export function getCatalogProject(id: string): CatalogProject | undefined {
13 return CATALOG.find((p) => p.id === id);
14}
15
16/** GitHub URL of a project's source folder in the repo. */
17export function catalogFolderUrl(p: CatalogProject): string {

Callers 4

generateMetadataFunction · 0.90
ProjectPageFunction · 0.90
generateMetadataFunction · 0.90
ProjectPlaygroundPageFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected