20 lines
348 B
Go
Raw Normal View History

2024-05-08 16:37:42 -04:00
package main
import (
2024-05-17 14:47:13 -04:00
"time"
2024-05-08 16:37:42 -04:00
"github.com/multiformats/go-multiaddr"
"github.com/urfave/cli/v2"
)
type Options struct {
2024-05-17 14:47:13 -04:00
LogLevel string
LogEncoding string
LogOutput string
ClusterID uint
PubSubTopics cli.StringSlice
DatabaseURL string
RetentionPolicy time.Duration
StoreNodes []multiaddr.Multiaddr
2024-05-08 16:37:42 -04:00
}