diff options
Diffstat (limited to '')
-rw-r--r-- | modules/analyze/vendor.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/analyze/vendor.go b/modules/analyze/vendor.go new file mode 100644 index 0000000..adcca92 --- /dev/null +++ b/modules/analyze/vendor.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Gitea Authors. All rights reserved. +// SPDX-License-Identifier: MIT + +package analyze + +import ( + "github.com/go-enry/go-enry/v2" +) + +// IsVendor returns whether or not path is a vendor path. +func IsVendor(path string) bool { + return enry.IsVendor(path) +} |