1 2 3 4 5 6 7 8 9 10 11 12 13
// WebSocket connection module // TODO: Implement full connection handling pub struct Connection { pub id: string, } impl Connection { pub fn new(id: string) -> Connection { Connection { id } } }