(str string)
| 110 | } |
| 111 | |
| 112 | func unmarshalAndMarshalServerRole(str string) string { |
| 113 | var role ServerRole |
| 114 | yaml.Unmarshal([]byte(str), &role) |
| 115 | ret, _ := yaml.Marshal(role) |
| 116 | |
| 117 | return strings.TrimSpace(string(ret)) |
| 118 | } |
| 119 | |
| 120 | func unmarshalAndMarshalAccountAddress(str string) string { |
| 121 | var addr AccountAddress |
no test coverage detected