mirror of
https://github.com/status-im/status-go.git
synced 2025-01-12 23:55:03 +00:00
14 lines
225 B
Go
14 lines
225 B
Go
|
package waku
|
||
|
|
||
|
import (
|
||
|
"github.com/status-im/status-go/eth-node/types"
|
||
|
)
|
||
|
|
||
|
type RequestOptions struct {
|
||
|
Topics []types.TopicType
|
||
|
Password string
|
||
|
Limit int
|
||
|
From int64 // in seconds
|
||
|
To int64 // in seconds
|
||
|
}
|