mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
4b059770ea
Close #119 Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: jolheiser <john.olheiser@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/121 Reviewed-by: John Olheiser <john.olheiser@gmail.com> Reviewed-by: Andrew Thornton <art27@cantab.net>
15 lines
387 B
Go
15 lines
387 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
|
|
_ "gitea.com/jolheiser/gitea-vet"
|
|
)
|