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 566B

12345678910111213141516171819202122232425
  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. // +build vendor
  6. package main
  7. // Libraries that are included to vendor utilities used during build.
  8. // These libraries will not be included in a normal compilation.
  9. import (
  10. // for embed
  11. _ "github.com/shurcooL/vfsgen"
  12. // for cover merge
  13. _ "golang.org/x/tools/cover"
  14. // for vet
  15. _ "code.gitea.io/gitea-vet"
  16. // for swagger
  17. _ "github.com/go-swagger/go-swagger/cmd/swagger"
  18. )