mirror of
https://github.com/logos-messaging/storenode-messages-counter.git
synced 2026-01-03 22:53:07 +00:00
17 lines
287 B
Go
17 lines
287 B
Go
package main
|
|
|
|
import (
|
|
"github.com/multiformats/go-multiaddr"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
type Options struct {
|
|
LogLevel string
|
|
LogEncoding string
|
|
LogOutput string
|
|
ClusterID uint
|
|
PubSubTopics cli.StringSlice
|
|
DatabaseURL string
|
|
StoreNodes []multiaddr.Multiaddr
|
|
}
|