(shortDesc string)
| 186 | } |
| 187 | |
| 188 | func SetShortDesc(shortDesc string) { |
| 189 | shortDesc = util.TruncateString(shortDesc, MaxShortDescLen) |
| 190 | client := engine.GetDefaultClient() |
| 191 | m := client.GetAppMeta() |
| 192 | m.ShortDesc = shortDesc |
| 193 | client.SetAppMeta(m) |
| 194 | } |
| 195 | |
| 196 | func DeclareSecret(secretName string, meta *SecretMeta) string { |
| 197 | client := engine.GetDefaultClient() |
nothing calls this directly
no test coverage detected