diff --git a/adapters/adapters.go b/adapters/adapters.go index ee05218..84d0181 100644 --- a/adapters/adapters.go +++ b/adapters/adapters.go @@ -6,6 +6,10 @@ type IDummyTelegram interface { DummyNotification(id string, text string) } +type IGit interface { + CreateRepo(name string) (*domain.Git, error) +} + type ICloud interface { CreateFolder(name string) domain.Response }