mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 00:13:52 +01:00
0ceea1b792
closes #140
14 lines
386 B
Go
14 lines
386 B
Go
// Package replication implements replication of filesystems with existing
|
|
// versions (snapshots) from a sender to a receiver.
|
|
package replication
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zrepl/zrepl/replication/driver"
|
|
)
|
|
|
|
func Do(ctx context.Context, driverConfig driver.Config, planner driver.Planner) (driver.ReportFunc, driver.WaitFunc) {
|
|
return driver.Do(ctx, driverConfig, planner)
|
|
}
|