gitea源码

vendor.go 275B

1234567891011121314
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package analyze
  4. import (
  5. "github.com/go-enry/go-enry/v2"
  6. )
  7. // IsVendor returns whether or not path is a vendor path.
  8. func IsVendor(path string) bool {
  9. return enry.IsVendor(path)
  10. }