ft-cli 0.1.0

ft-cli is a tool for syncing a git repo or a local folder to a FifthTry account
1
2
3
4
5
6
pub fn auth_code() -> String {
    match std::env::var("FT_AUTH_CODE") {
        Ok(code) => code,
        Err(_) => panic!("FT_AUTH_CODE not found in environment"),
    }
}