mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-12-26 12:34:07 +01:00
2df557dff7
Cover merge is used for specific tool that is now also deleted (no good use case). We don't use Gitea vet and swagger is run via `go run` and not imported anyway.
14 lines
317 B
Go
14 lines
317 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//go: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 embed
|
|
_ "github.com/shurcooL/vfsgen"
|
|
)
|