2025-01-21 16:43:26 +01:00
|
|
|
//go:build online
|
2025-01-15 01:16:03 +01:00
|
|
|
// +build online
|
|
|
|
|
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"git.grassecon.net/grassrootseconomics/sarafu-api/remote"
|
|
|
|
httpremote "git.grassecon.net/grassrootseconomics/sarafu-api/remote/http"
|
2025-01-21 16:43:26 +01:00
|
|
|
"git.grassecon.net/grassrootseconomics/visedriver/storage"
|
2025-01-15 01:16:03 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func New(ctx context.Context, storageService storage.StorageService, conn storage.ConnData) remote.AccountService {
|
|
|
|
return &httpremote.HTTPAccountService{}
|
|
|
|
}
|