mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 21:05:22 +01:00
16 lines
478 B
TypeScript
16 lines
478 B
TypeScript
import {PartsCatalog} from "./partImportPlugin";
|
|
import {GitHubRepoRepository} from "../repository/GitHubRepoRepository";
|
|
import {GrCubes} from "react-icons/gr";
|
|
|
|
export const WEB_CAD_ORG_COMMONS: PartsCatalog = Object.freeze({
|
|
|
|
id: 'web-cad.org',
|
|
name: 'Commons Parts',
|
|
description: 'Public parts repository by web-cad.org',
|
|
icon: GrCubes,
|
|
repo: new GitHubRepoRepository('xibyte/web-cad', 'master'),
|
|
metadataPath: 'commons.catalog.json',
|
|
partsPath: 'parts'
|
|
|
|
});
|
|
|