You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.go 549B

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