1// Copyright 2020 The Gitea Authors. All rights reserved.
2// SPDX-License-Identifier: MIT
3
4//go:build vendor
5
6package main
7
8// Libraries that are included to vendor utilities used during build.
9// These libraries will not be included in a normal compilation.
10
11import (
12 // for embed
13 _ "github.com/shurcooL/vfsgen"
14)