mirror of
https://github.com/eosswedenorg/thalos
synced 2026-07-02 11:43:40 +02:00
main.go: setup redis pubsub publisher.
This commit is contained in:
parent
45bf043d8a
commit
eec834a338
1 changed files with 8 additions and 0 deletions
8
main.go
8
main.go
|
|
@ -11,6 +11,9 @@ import (
|
||||||
|
|
||||||
"eosio-ship-trace-reader/config"
|
"eosio-ship-trace-reader/config"
|
||||||
"eosio-ship-trace-reader/internal/redis"
|
"eosio-ship-trace-reader/internal/redis"
|
||||||
|
"eosio-ship-trace-reader/transport"
|
||||||
|
"eosio-ship-trace-reader/transport/redis_pubsub"
|
||||||
|
|
||||||
"github.com/nikoksr/notify"
|
"github.com/nikoksr/notify"
|
||||||
"github.com/nikoksr/notify/service/telegram"
|
"github.com/nikoksr/notify/service/telegram"
|
||||||
|
|
||||||
|
|
@ -39,6 +42,8 @@ var (
|
||||||
|
|
||||||
var abi_mgr *abi.AbiManager
|
var abi_mgr *abi.AbiManager
|
||||||
|
|
||||||
|
var publisher transport.Publisher
|
||||||
|
|
||||||
var redisNs redis.Namespace
|
var redisNs redis.Namespace
|
||||||
|
|
||||||
// Reader states
|
// Reader states
|
||||||
|
|
@ -220,6 +225,9 @@ func main() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Setup publisher
|
||||||
|
publisher = redis_pubsub.New(redis.Client())
|
||||||
|
|
||||||
// Connect client and get chain info.
|
// Connect client and get chain info.
|
||||||
log.Printf("Get chain info from api at: %s", conf.Api)
|
log.Printf("Get chain info from api at: %s", conf.Api)
|
||||||
eosClient = eos.New(conf.Api)
|
eosClient = eos.New(conf.Api)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue