blob: e9d23fa688cbc3587b1099052cbc39eb41791dbd [file] [log] [blame]
Niko Sohmerse92516c2024-03-23 18:40:30 -07001import {Connection} from '../../aos/network/www/proxy';
2
3import {StarterHandler} from './starter_handler';
4
5const conn = new Connection();
6
7conn.connect();
8
9const starterHandler = new StarterHandler(conn);
10
11starterHandler.draw();