move I to adapters package

This commit is contained in:
naudachu 2023-11-22 16:05:16 +05:00
parent 47cae1e99d
commit 98f401c6f4
1 changed files with 4 additions and 0 deletions

View File

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