mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
eb37f14923
tagged version v0.2.0 make vendor Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/164 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: techknowlogick <techknowlogick@gitea.io>
15 lines
381 B
Go
15 lines
381 B
Go
// 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.
|
|
//+build vendor
|
|
|
|
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
|
|
_ "code.gitea.io/gitea-vet"
|
|
)
|