(title string)
| 179 | } |
| 180 | |
| 181 | func SetTitle(title string) { |
| 182 | client := engine.GetDefaultClient() |
| 183 | m := client.GetAppMeta() |
| 184 | m.Title = title |
| 185 | client.SetAppMeta(m) |
| 186 | } |
| 187 | |
| 188 | func SetShortDesc(shortDesc string) { |
| 189 | shortDesc = util.TruncateString(shortDesc, MaxShortDescLen) |
nothing calls this directly
no test coverage detected