diff --git a/services/remote.go b/services/remote.go index 517d67d..baad08f 100644 --- a/services/remote.go +++ b/services/remote.go @@ -12,5 +12,8 @@ import ( ) func New(ctx context.Context, storageService storage.StorageService) remote.AccountService { - return &httpremote.HTTPAccountService{} + return &httpremote.HTTPAccountService{ + SS: storageService, + UseApi: false, + } }