16 lines
413 B
Go
16 lines
413 B
Go
// +build online
|
|
|
|
package services
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.grassecon.net/grassrootseconomics/visedriver/storage"
|
|
"git.grassecon.net/grassrootseconomics/sarafu-api/remote"
|
|
httpremote "git.grassecon.net/grassrootseconomics/sarafu-api/remote/http"
|
|
)
|
|
|
|
func New(ctx context.Context, storageService storage.StorageService, conn storage.ConnData) remote.AccountService {
|
|
return &httpremote.HTTPAccountService{}
|
|
}
|