mirror of
https://github.com/jkl1337/duplicacy.git
synced 2026-01-04 04:34:45 -06:00
14 lines
356 B
Go
14 lines
356 B
Go
// Copyright (c) Acrosync LLC. All rights reserved.
|
|
// Free for personal use and commercial trial
|
|
// Commercial use requires per-user licenses available from https://duplicacy.com
|
|
|
|
// +build !windows
|
|
|
|
package duplicacy
|
|
|
|
func CreateShadowCopy(top string, shadowCopy bool, timeoutInSeconds int) (shadowTop string) {
|
|
return top
|
|
}
|
|
|
|
func DeleteShadowCopy() {}
|