- removed YouTrack mentions;
This commit is contained in:
parent
abee9880e1
commit
05e18ce182
|
|
@ -9,26 +9,21 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type WorkflowController struct {
|
type WorkflowController struct {
|
||||||
iGit services.IGit
|
iGit services.IGit
|
||||||
iCloud services.ICloud
|
iCloud services.ICloud
|
||||||
iYouTrack services.IYouTrack
|
iCoda services.ICoda
|
||||||
additionalYT services.IYouTrack
|
|
||||||
iCoda services.ICoda
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewWorkflowController(
|
func NewWorkflowController(
|
||||||
git services.IGit,
|
git services.IGit,
|
||||||
cloud services.ICloud,
|
cloud services.ICloud,
|
||||||
devyt services.IYouTrack,
|
|
||||||
farmyt services.IYouTrack,
|
|
||||||
coda services.ICoda,
|
coda services.ICoda,
|
||||||
) *WorkflowController {
|
) *WorkflowController {
|
||||||
return &WorkflowController{
|
return &WorkflowController{
|
||||||
iGit: git,
|
iGit: git,
|
||||||
iCloud: cloud,
|
iCloud: cloud,
|
||||||
iYouTrack: devyt,
|
|
||||||
additionalYT: farmyt,
|
iCoda: coda,
|
||||||
iCoda: coda,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue