blob: d410e171c7e1ae71192932cc528e229104694644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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"
)
|