()
| 48 | } |
| 49 | |
| 50 | func main() { |
| 51 | defer func() { |
| 52 | if r := recover(); r != nil { |
| 53 | fmt.Println(r) |
| 54 | fmt.Println(T("Application exited unexpectedly")) |
| 55 | } |
| 56 | }() |
| 57 | |
| 58 | if err := commands.Execute(); err != nil { |
| 59 | commands.ExitOnError(err) |
| 60 | } |
| 61 | return |
| 62 | } |
nothing calls this directly
no test coverage detected