tools.go 805 B

12345678910111213141516171819202122232425
  1. // Copyright 2018 Gin Core Team. All rights reserved.
  2. // Use of this source code is governed by a MIT style
  3. // license that can be found in the LICENSE file.
  4. // +build tools
  5. // This package exists to cause `go mod` and `go get` to believe these tools
  6. // are dependencies, even though they are not runtime dependencies of any
  7. // gin package. This means they will appear in `go.mod` file, but will not
  8. // be a part of the build.
  9. package tools
  10. import (
  11. _ "github.com/campoy/embedmd"
  12. _ "github.com/client9/misspell/cmd/misspell"
  13. _ "github.com/dustin/go-broadcast"
  14. _ "github.com/gin-gonic/autotls"
  15. _ "github.com/jessevdk/go-assets"
  16. _ "github.com/manucorporat/stats"
  17. _ "github.com/thinkerou/favicon"
  18. _ "golang.org/x/crypto/acme/autocert"
  19. _ "golang.org/x/lint/golint"
  20. _ "google.golang.org/grpc"
  21. )