Rust Documentation Crate

This is a WIP, don't use it

Set up a script with access to a Reddit account, collect the access token, the client ID, and the client secret. Once you have that, get a refresh token. Once you have that you can do:

``` // Refresh token is mutable so it can be refreshed automatically let mut refresh_token = "";

let pants = Pants::new( USER_AGENT, "", "", "", ); ``` Then you can invoke things, e.g:

pants.me(&mut refresh_token)

If your refresh token expires, it should automatically refresh.