mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-04 06:53:11 +00:00
14 lines
244 B
Go
14 lines
244 B
Go
package store
|
|
|
|
import (
|
|
"github.com/libp2p/go-libp2p/core/protocol"
|
|
)
|
|
|
|
const StoreQueryID_v300 = protocol.ID("/vac/waku/store-query/3.0.0")
|
|
|
|
type FilterCriteria struct {
|
|
ContentFilter interface{}
|
|
TimeStart *int64
|
|
TimeEnd *int64
|
|
}
|