gitea源码

123456789101112131415
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. //go:build vendor
  4. package main
  5. // Libraries that are included to vendor utilities used during Makefile build.
  6. // These libraries will not be included in a normal compilation.
  7. import (
  8. // for vet
  9. _ "code.gitea.io/gitea-vet"
  10. )