mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-23 14:53:10 -06:00
12 lines
185 B
Go
12 lines
185 B
Go
package sync
|
|
|
|
import "github.com/matrix-org/dendrite/syncapi/types"
|
|
|
|
type SyncProvider interface {
|
|
WaitFor()
|
|
}
|
|
|
|
type SyncStream interface {
|
|
GetLatestPosition() types.StreamPosition
|
|
}
|