| 123456789101112131415 |
- use std::collections::BTreeMap;
- #[derive(Clone)]
- pub struct GateSpotRest {}
- impl GateSpotRest {
- pub fn new(_is_colo: bool, _login_param: BTreeMap<String, String>) -> GateSpotRest
- {
- return GateSpotRest::new_label("default-GateSpotRest".to_string(), _is_colo, _login_param);
- }
- pub fn new_label(_label: String, _is_colo: bool, _login_param: BTreeMap<String, String>) -> GateSpotRest
- {
- GateSpotRest {}
- }
- }
|