See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| use std::{ | |
| collections::HashMap, | |
| fs, | |
| io::{self, Write}, | |
| }; | |
| use reqwest::Client; | |
| use serde::{Deserialize, Serialize}; | |
| use serde_json::json; |
| import { XMLHttpRequest } from "xmlhttprequest"; | |
| interface AuthorizationTokenResponse { | |
| token_type: string, | |
| expires_in: number, | |
| scope: string, | |
| access_token: string, | |
| refresh_token: string, | |
| user_id: string, | |
| foci: string |