garhow / steam-rs

Safe Rust bindings for the Steam Web API
MIT License
22 stars 10 forks source link

Support Steam client logins alongside Web API bindings #20

Open garhow opened 1 year ago

garhow commented 1 year ago

Read the documentation for the steam Python package for reference of functionality. Any ideas??

Potential implementation concept?

pub struct SteamClient {
    username: String,
    password: String,
}

impl SteamClient {
    pub fn new(
        username: &str,
        password: &str
    ) -> SteamClient {
        // todo
    }
}
marcohoovy commented 1 year ago

This should be enabled by a feature flag