mirror of
https://github.com/logos-messaging/storenode-messages-counter.git
synced 2026-01-05 07:33:12 +00:00
20 lines
348 B
Go
20 lines
348 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"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
|
|
RetentionPolicy time.Duration
|
|
StoreNodes []multiaddr.Multiaddr
|
|
}
|