vela 0.0.1

Quick develop table game server with Vela framework
Documentation
1
2
3
4
5
trait SessionRegistry<S> {
    fn lookup(&self, id: &str) -> Option<&S>;
    fn insert(&mut self, id: String, session: S);
    fn remove(&mut self, id: &str) -> Option<S>;
}