summaryrefslogtreecommitdiff
path: root/src/session.rs
blob: b07623a7aaf456f642c3cec2394287927831f237 (plain)
1
2
3
4
5
6
7
use std::collections::HashMap;
use std::slice::Iter;

pub struct Session {
    pub steam_name: String,
    pub passcode: String,
}