gate_spot_rest.rs 444 B

123456789101112131415
  1. use std::collections::BTreeMap;
  2. #[derive(Clone)]
  3. pub struct GateSpotRest {}
  4. impl GateSpotRest {
  5. pub fn new(_is_colo: bool, _login_param: BTreeMap<String, String>) -> GateSpotRest
  6. {
  7. return GateSpotRest::new_label("default-GateSpotRest".to_string(), _is_colo, _login_param);
  8. }
  9. pub fn new_label(_label: String, _is_colo: bool, _login_param: BTreeMap<String, String>) -> GateSpotRest
  10. {
  11. GateSpotRest {}
  12. }
  13. }