- removed YouTrack mentions;

This commit is contained in:
Volkomurov 2023-09-06 19:01:26 +05:00
parent abee9880e1
commit 05e18ce182
1 changed files with 7 additions and 12 deletions

View File

@ -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,
} }
} }