Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
663 B
27 lines
663 B
5 years ago
|
// 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.
|
||
|
|
||
5 years ago
|
//+build vendor
|
||
|
|
||
|
package main
|
||
|
|
||
|
// Libraries that are included to vendor utilities used during build.
|
||
|
// These libraries will not be included in a normal compilation.
|
||
5 years ago
|
|
||
|
import (
|
||
|
// for lint
|
||
|
_ "github.com/BurntSushi/toml"
|
||
|
_ "github.com/mgechev/dots"
|
||
|
_ "github.com/mgechev/revive/formatter"
|
||
|
_ "github.com/mgechev/revive/lint"
|
||
|
_ "github.com/mgechev/revive/rule"
|
||
|
_ "github.com/mitchellh/go-homedir"
|
||
|
|
||
|
// for embed
|
||
|
_ "github.com/shurcooL/vfsgen"
|
||
5 years ago
|
|
||
|
// for cover merge
|
||
|
_ "golang.org/x/tools/cover"
|
||
5 years ago
|
)
|