Spaces:
Running
Running
File size: 308 Bytes
02eac4b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/**
* LeRobot Arena Client Library - TypeScript/JavaScript
*
* Main entry point for the robotics client library.
*/
// Re-export everything from robotics module
export * as robotics from './robotics/index.js';
export * as video from './video/index.js';
// Version info
export const VERSION = '1.0.0';
|