2020-04-28 13:02:21 +00: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.
|
2022-03-13 00:53:18 +00:00
|
|
|
//go:build vendor
|
|
|
|
// +build vendor
|
2020-04-28 13:02:21 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
// Libraries that are included to vendor utilities used during build.
|
|
|
|
// These libraries will not be included in a normal compilation.
|
|
|
|
|
|
|
|
import (
|
|
|
|
// for vet
|
2020-07-21 16:17:52 +00:00
|
|
|
_ "code.gitea.io/gitea-vet"
|
2020-04-28 13:02:21 +00:00
|
|
|
)
|