(s int)
| 32 | } |
| 33 | |
| 34 | func FromServiceState(s int) ServiceState { |
| 35 | switch s { |
| 36 | case 0: |
| 37 | return ServiceStateNormal |
| 38 | case 1: |
| 39 | return ServiceStateDeploying |
| 40 | case 2: |
| 41 | return ServiceStateDeployError |
| 42 | default: |
| 43 | return "" |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | type ServiceItem struct { |
| 48 | Id string `json:"id"` |