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