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

123456789101112131415161718192021222324
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. //go:build vendor
  4. package main
  5. // Libraries that are included to vendor utilities used during build.
  6. // These libraries will not be included in a normal compilation.
  7. import (
  8. // for embed
  9. _ "github.com/shurcooL/vfsgen"
  10. // for cover merge
  11. _ "golang.org/x/tools/cover"
  12. // for vet
  13. _ "code.gitea.io/gitea-vet"
  14. // for swagger
  15. _ "github.com/go-swagger/go-swagger/cmd/swagger"
  16. )