1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-18 04:40:03 +02:00

move writer interface and redis publish from api module as these are for the server side.

This commit is contained in:
Henrik Hautakoski 2023-11-25 15:12:08 +01:00
parent a94fbe191a
commit 24bf44a175
5 changed files with 11 additions and 5 deletions

View file

@ -22,6 +22,7 @@ import (
"github.com/eosswedenorg/thalos/app"
"github.com/eosswedenorg/thalos/app/abi"
"github.com/eosswedenorg/thalos/app/config"
driver "github.com/eosswedenorg/thalos/app/driver/redis"
. "github.com/eosswedenorg/thalos/app/log"
"github.com/nikoksr/notify"
"github.com/nikoksr/notify/service/telegram"
@ -314,7 +315,7 @@ func main() {
processor := app.SpawnProccessor(
shClient,
api_redis.NewPublisher(context.Background(), rdb, api_redis.Namespace{
driver.NewPublisher(context.Background(), rdb, api_redis.Namespace{
Prefix: conf.Redis.Prefix,
ChainID: chain_id,
}),