with moved commands

This commit is contained in:
2022-09-21 21:29:44 +02:00
parent 8e12bf1bff
commit 73be67a0fd
13 changed files with 486 additions and 378 deletions

View File

@@ -23,12 +23,12 @@ type (
ActionCreator struct {
logger *zap.Logger
storage *storage.Service
git *providers.Git
git *providers.GoGit
}
ActionCreatorDeps interface {
GetStorageService() *storage.Service
GetGitProvider() *providers.Git
GetGitProvider() *providers.GoGit
}
)