1
2
3
4
5
6
7
/// The location to run the build
pub enum Location {
    /// Run the build locally
    Local,
    /// Run the build on the specified remote server
    Remote(String),
}