pub type Result<T> = Result<T, GGError>;
All result about tailwind
pub enum Result<T> { Ok(T), Err(GGError), }
Contains the success value
Contains the error value