Files

16 lines
329 B
Go
Raw Permalink Normal View History

2020-04-28 13:02:21 +00:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2023-09-08 01:40:02 +00:00
// SPDX-License-Identifier: MIT
2022-03-13 08:53:18 +08: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
)