| 51 | var ticketRegex = regexp.MustCompile(`BED-[0-9]{4,}`) |
| 52 | |
| 53 | type command struct { |
| 54 | env environment.Environment |
| 55 | start string |
| 56 | end string |
| 57 | baseBranch string |
| 58 | } |
| 59 | |
| 60 | // Create new instance of command to capture given environment |
| 61 | func Create(env environment.Environment) *command { |
nothing calls this directly
no outgoing calls
no test coverage detected