This also includes sending metadata and part of the concatenated gzip, not in the s3 metadata as that has a 2kb limit. Resolves #320
13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
import { DefaultKernelExport } from './common'
|
|
import type { CadPackage } from 'src/helpers/hooks/useIdeState'
|
|
|
|
import openscad from './openScad/openScadController'
|
|
import cadquery from './cadQueryController'
|
|
import jscad from './jsCad/jsCadController'
|
|
|
|
export const cadPackages: { [key in CadPackage]: DefaultKernelExport } = {
|
|
openscad,
|
|
cadquery,
|
|
jscad,
|
|
}
|