2020-04-04 00:59:12 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2020-04-04 00:59:12 +05:30
|
|
|
|
2021-08-24 22:17:09 +05:30
|
|
|
//go:build vendor
|
2020-04-05 09:05:02 +05:30
|
|
|
|
|
|
|
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 00:59:12 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
// for embed
|
|
|
|
_ "github.com/shurcooL/vfsgen"
|
2020-04-04 14:15:26 +05:30
|
|
|
|
|
|
|
// for cover merge
|
|
|
|
_ "golang.org/x/tools/cover"
|
2020-04-05 11:50:50 +05:30
|
|
|
|
|
|
|
// for vet
|
2020-08-15 22:43:07 +05:30
|
|
|
_ "code.gitea.io/gitea-vet"
|
2020-04-05 11:50:50 +05:30
|
|
|
|
|
|
|
// for swagger
|
|
|
|
_ "github.com/go-swagger/go-swagger/cmd/swagger"
|
2020-04-04 00:59:12 +05:30
|
|
|
)
|