mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
19 lines
675 B
TypeScript
19 lines
675 B
TypeScript
import {PartsCatalog} from "./remotePartsBundle";
|
|
import {GitHubRepoRepository} from "../repository/GitHubRepoRepository";
|
|
import {GrCubes} from "react-icons/gr";
|
|
import {PartRepository} from "./partRepository";
|
|
|
|
const WEB_CAD_ORG_REPO = new GitHubRepoRepository('xibyte/web-cad', 'master');
|
|
|
|
export const WEB_CAD_ORG_COMMONS_CATALOG: PartsCatalog = Object.freeze({
|
|
|
|
id: 'web-cad.org',
|
|
name: 'Commons Parts',
|
|
description: 'Public parts repository by web-cad.org',
|
|
icon: GrCubes,
|
|
repo: WEB_CAD_ORG_REPO,
|
|
metadataPath: 'commons.catalog.json',
|
|
|
|
});
|
|
|
|
export const WEB_CAD_ORG_PARTS_REPO: PartRepository = new PartRepository('web-cad.org', WEB_CAD_ORG_REPO, 'parts');
|