2020-04-03 15:29:12 -04:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2020-04-03 15:29:12 -04:00
|
|
|
|
2021-08-24 12:47:09 -04:00
|
|
|
//go:build vendor
|
2020-04-04 23:35:02 -04:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
// Libraries that are included to vendor utilities used during build.
|
|
|
|
// These libraries will not be included in a normal compilation.
|
2020-04-03 15:29:12 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
// for embed
|
|
|
|
_ "github.com/shurcooL/vfsgen"
|
2020-04-04 04:45:26 -04:00
|
|
|
|
|
|
|
// for cover merge
|
|
|
|
_ "golang.org/x/tools/cover"
|
2020-04-05 02:20:50 -04:00
|
|
|
|
|
|
|
// for vet
|
2020-08-15 13:13:07 -04:00
|
|
|
_ "code.gitea.io/gitea-vet"
|
2020-04-05 02:20:50 -04:00
|
|
|
|
|
|
|
// for swagger
|
|
|
|
_ "github.com/go-swagger/go-swagger/cmd/swagger"
|
2020-04-03 15:29:12 -04:00
|
|
|
)
|