pub type GitHubResult<T> = Result<T, String>;
pub enum GitHubResult<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value