mirror of
https://github.com/gilbertchen/duplicacy
synced 2025-12-10 05:13:17 +00:00
13 lines
328 B
Go
13 lines
328 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
|
|
|
|
package duplicacy
|
|
|
|
import (
|
|
)
|
|
|
|
func excludedByAttribute(attirbutes map[string][]byte) bool {
|
|
_, ok := attirbutes["duplicacy_exclude"]
|
|
return ok
|
|
} |