github.com/gitbundle/modules@v0.0.0-20231025071548-85b91c5c3b01/analyze/vendor.go (about) 1 // Copyright 2023 The GitBundle Inc. All rights reserved. 2 // Copyright 2017 The Gitea Authors. All rights reserved. 3 // Use of this source code is governed by a MIT-style 4 // license that can be found in the LICENSE file. 5 6 package analyze 7 8 import ( 9 "github.com/go-enry/go-enry/v2" 10 ) 11 12 // IsVendor returns whether or not path is a vendor path. 13 func IsVendor(path string) bool { 14 return enry.IsVendor(path) 15 }