2020-04-04 03:29:12 +08:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2021-08-25 00:47:09 +08:00
|
|
|
//go:build vendor
|
2020-04-05 11:35:02 +08: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-04 03:29:12 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
// for embed
|
|
|
|
_ "github.com/shurcooL/vfsgen"
|
2020-04-04 16:45:26 +08:00
|
|
|
|
|
|
|
// for cover merge
|
|
|
|
_ "golang.org/x/tools/cover"
|
2020-04-05 14:20:50 +08:00
|
|
|
|
|
|
|
// for vet
|
2020-08-16 01:13:07 +08:00
|
|
|
_ "code.gitea.io/gitea-vet"
|
2020-04-05 14:20:50 +08:00
|
|
|
|
|
|
|
// for swagger
|
|
|
|
_ "github.com/go-swagger/go-swagger/cmd/swagger"
|
2020-04-04 03:29:12 +08:00
|
|
|
)
|