(path string)
| 22 | } |
| 23 | |
| 24 | func NewSQL(path string) *SQL { |
| 25 | sql := &SQL{ |
| 26 | path: path, |
| 27 | } |
| 28 | return sql |
| 29 | } |
| 30 | |
| 31 | func getExitstatus(err error) int { |
| 32 | exiterr, ok := err.(*exec.ExitError) |
nothing calls this directly
no outgoing calls
no test coverage detected