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

1234567891011121314151617181920212223
  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. )