export type User = {
    type_of: string,
    id: number
    username: string,
    name: string,
    summary: string,
    twitter_username: string,
    github_username: string,
    website_url: string,
    location: string,
    joined_at: string,
    profile_image: string,
}
