Files
mixly3-server/mixly/boards/default_src/python_mixpy/export.js

64 lines
2.8 KiB
JavaScript

import * as PythonMixpyAIBlocks from './blocks/ai';
import * as PythonMixpyAlgorithmBlocks from './blocks/algorithm';
import * as PythonMixpyCommunicateBlocks from './blocks/communicate';
import * as PythonMixpyCVBlocks from './blocks/cv';
import * as PythonMixpyDataBlocks from './blocks/data';
import * as PythonMixpyDatastructureBlocks from './blocks/datastructure';
import * as PythonMixpyFactoryBlocks from './blocks/factory';
import * as PythonMixpyHardwareBlocks from './blocks/hardware';
import * as PythonMixpyInoutBlocks from './blocks/inout';
import * as PythonMixpyIOTBlocks from './blocks/iot';
import * as PythonMixpyPinsBlocks from './blocks/pins';
import * as PythonMixpySerialBlocks from './blocks/serial';
import * as PythonMixpySKLearnBlocks from './blocks/sklearn';
import * as PythonMixpySystemBlocks from './blocks/system';
import * as PythonMixpyTurtleBlocks from './blocks/turtle';
import * as PythonMixpyAIGenerators from './generators/ai';
import * as PythonMixpyAlgorithmGenerators from './generators/algorithm';
import * as PythonMixpyCommunicateGenerators from './generators/communicate';
import * as PythonMixpyCVGenerators from './generators/cv';
import * as PythonMixpyDataGenerators from './generators/data';
import * as PythonMixpyDatastructureGenerators from './generators/datastructure';
import * as PythonMixpyFactoryGenerators from './generators/factory';
import * as PythonMixpyHardwareGenerators from './generators/hardware';
import * as PythonMixpyInoutGenerators from './generators/inout';
import * as PythonMixpyIOTGenerators from './generators/iot';
import * as PythonMixpyPinsGenerators from './generators/pins';
import * as PythonMixpySerialGenerators from './generators/serial';
import * as PythonMixpySKLearnGenerators from './generators/sklearn';
import * as PythonMixpySystemGenerators from './generators/system';
import * as PythonMixpyTurtleGenerators from './generators/turtle';
export {
PythonMixpyAIBlocks,
PythonMixpyAlgorithmBlocks,
PythonMixpyCommunicateBlocks,
PythonMixpyCVBlocks,
PythonMixpyDataBlocks,
PythonMixpyDatastructureBlocks,
PythonMixpyFactoryBlocks,
PythonMixpyHardwareBlocks,
PythonMixpyInoutBlocks,
PythonMixpyIOTBlocks,
PythonMixpyPinsBlocks,
PythonMixpySerialBlocks,
PythonMixpySKLearnBlocks,
PythonMixpySystemBlocks,
PythonMixpyTurtleBlocks,
PythonMixpyAIGenerators,
PythonMixpyAlgorithmGenerators,
PythonMixpyCommunicateGenerators,
PythonMixpyCVGenerators,
PythonMixpyDataGenerators,
PythonMixpyDatastructureGenerators,
PythonMixpyFactoryGenerators,
PythonMixpyHardwareGenerators,
PythonMixpyInoutGenerators,
PythonMixpyIOTGenerators,
PythonMixpyPinsGenerators,
PythonMixpySerialGenerators,
PythonMixpySKLearnGenerators,
PythonMixpySystemGenerators,
PythonMixpyTurtleGenerators
};