()
| 19 | } |
| 20 | |
| 21 | func (s ServiceState) Int() int { |
| 22 | switch s { |
| 23 | case ServiceStateNormal: |
| 24 | return 0 |
| 25 | case ServiceStateDeploying: |
| 26 | return 1 |
| 27 | case ServiceStateDeployError: |
| 28 | return 2 |
| 29 | default: |
| 30 | return 0 |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | func FromServiceState(s int) ServiceState { |
| 35 | switch s { |