apollo/index.js

15 lines
340 B
JavaScript
Raw Normal View History

2024-10-27 08:20:28 -04:00
import Apollo from './apollo.js';
import Cli from './cli.js';
import Http from './http.js';
import Serial from './serial.js';
(async () => {
const apollo = new Apollo();
const cli = new Cli(apollo);
const serial = new Serial(apollo);
const http = new Http(apollo);
await apollo.start();
cli.start();
// serial.start();
})();