Niko Sohmers | e92516c | 2024-03-23 18:40:30 -0700 | [diff] [blame] | 1 | import {Connection} from '../../aos/network/www/proxy'; |
2 | |||||
3 | import {StarterHandler} from './starter_handler'; | ||||
4 | |||||
5 | const conn = new Connection(); | ||||
6 | |||||
7 | conn.connect(); | ||||
8 | |||||
9 | const starterHandler = new StarterHandler(conn); | ||||
10 | |||||
11 | starterHandler.draw(); |