mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
18 lines
278 B
Go
18 lines
278 B
Go
package localsink
|
|
|
|
import (
|
|
"github.com/seaweedfs/seaweedfs/weed/replication/sink"
|
|
)
|
|
|
|
type LocalIncSink struct {
|
|
LocalSink
|
|
}
|
|
|
|
func (localincsink *LocalIncSink) GetName() string {
|
|
return "local_incremental"
|
|
}
|
|
|
|
func init() {
|
|
sink.Sinks = append(sink.Sinks, &LocalIncSink{})
|
|
}
|