github.com/status-im/status-go@v1.1.0/protocol/peersyncing/config.go (about) 1 package peersyncing 2 3 import ( 4 "database/sql" 5 6 "github.com/status-im/status-go/protocol/common" 7 ) 8 9 type Config struct { 10 SyncMessagePersistence SyncMessagePersistence 11 Database *sql.DB 12 Timesource common.TimeSource 13 }