2020-04-03 13:29:12 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-08-24 10:47:09 -06:00
|
|
|
//go:build vendor
|
2020-04-04 21:35:02 -06: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 13:29:12 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
// for embed
|
|
|
|
_ "github.com/shurcooL/vfsgen"
|
2020-04-04 02:45:26 -06:00
|
|
|
|
|
|
|
// for cover merge
|
|
|
|
_ "golang.org/x/tools/cover"
|
2020-04-05 00:20:50 -06:00
|
|
|
|
|
|
|
// for vet
|
2020-08-15 11:13:07 -06:00
|
|
|
_ "code.gitea.io/gitea-vet"
|
2020-04-05 00:20:50 -06:00
|
|
|
|
|
|
|
// for swagger
|
|
|
|
_ "github.com/go-swagger/go-swagger/cmd/swagger"
|
2020-04-03 13:29:12 -06:00
|
|
|
)
|