// Copyright Starry Inc. 2018. All Rights Reserved.
//! Various `Error` types and `Error` related utilities.
/// `Error` type, using failure, used throughout rust client
pub type SysadminError = Error;
/// `Result` type used throughout rust client
pub type SysadminResult<T> = Result;