From 05e18ce182f836dfd9c379f9acf2f3343a97b22f Mon Sep 17 00:00:00 2001 From: Volkomurov Date: Wed, 6 Sep 2023 19:01:26 +0500 Subject: [PATCH] - removed YouTrack mentions; --- bot/controller/controller.go | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/bot/controller/controller.go b/bot/controller/controller.go index 21226aa..cb02d23 100644 --- a/bot/controller/controller.go +++ b/bot/controller/controller.go @@ -9,26 +9,21 @@ import ( ) type WorkflowController struct { - iGit services.IGit - iCloud services.ICloud - iYouTrack services.IYouTrack - additionalYT services.IYouTrack - iCoda services.ICoda + iGit services.IGit + iCloud services.ICloud + iCoda services.ICoda } func NewWorkflowController( git services.IGit, cloud services.ICloud, - devyt services.IYouTrack, - farmyt services.IYouTrack, coda services.ICoda, ) *WorkflowController { return &WorkflowController{ - iGit: git, - iCloud: cloud, - iYouTrack: devyt, - additionalYT: farmyt, - iCoda: coda, + iGit: git, + iCloud: cloud, + + iCoda: coda, } }