remove unused New conn argument

This commit is contained in:
Carlosokumu 2025-01-23 11:22:34 +03:00
parent 99d03e3bc9
commit 1249e45d54
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

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