(c *cli.Context, err error)
| 103 | } |
| 104 | |
| 105 | func cxdie(c *cli.Context, err error) { |
| 106 | fmt.Fprintf(os.Stderr, "Failed to connect to %s (type %s): %s", conn(c), driver(c), err) |
| 107 | os.Exit(1) |
| 108 | } |
| 109 | |
| 110 | var funcMap = map[string]interface{}{ |
| 111 | "ann": func(tag, val string) string { |
no test coverage detected