forked from gin-gonic/gin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt to support go module (gin-gonic#1569)
* support go module * update golint package url * update golint
- Loading branch information
Showing
5 changed files
with
64 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright 2018 Gin Core Team. All rights reserved. | ||
// Use of this source code is governed by a MIT style | ||
// license that can be found in the LICENSE file. | ||
|
||
// +build tools | ||
|
||
// This file exists to cause `go mod` and `go get` to believe these tools | ||
// are dependencies, even though they are not runtime dependencies of any | ||
// gin package. This means they will appear in `go.mod` file, but will not | ||
// be a part of the build. | ||
|
||
package gin | ||
|
||
import ( | ||
_ "github.com/campoy/embedmd" | ||
_ "github.com/client9/misspell/cmd/misspell" | ||
_ "github.com/dustin/go-broadcast" | ||
_ "github.com/gin-gonic/autotls" | ||
_ "github.com/jessevdk/go-assets" | ||
_ "github.com/manucorporat/stats" | ||
_ "github.com/thinkerou/favicon" | ||
_ "golang.org/x/crypto/acme/autocert" | ||
_ "golang.org/x/lint/golint" | ||
_ "google.golang.org/grpc" | ||
) |