Merge pull request 'remove unused New conn argument' (#14) from fix-remote-new-args into master

Reviewed-on: #14
This commit was merged in pull request #14.
This commit is contained in:
2025-01-23 09:29:25 +01:00

View File

@@ -11,6 +11,6 @@ import (
"git.grassecon.net/grassrootseconomics/visedriver/storage"
)
func New(ctx context.Context, storageService storage.StorageService, conn storage.ConnData) remote.AccountService {
func New(ctx context.Context, storageService storage.StorageService) remote.AccountService {
return &httpremote.HTTPAccountService{}
}