您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  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. }