generated from MatthewDolan/template-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49eb61d
commit 7bd968e
Showing
2 changed files
with
3 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
# template-go | ||
A minimalist template for a Go repository. | ||
|
||
The goal is to minimize the assumed to dependencies to almost nothing (it should be able to run as-is on Linux and Mac). | ||
|
||
It relies on [hermit](https://github.com/cashapp/hermit) to install go and any dependent binaries. It uses [golangci-lint](https://github.com/golangci/golangci-lint) for linting & [gotestsum](https://github.com/gotestyourself/gotestsum) for testing. | ||
|
||
It is relaively simple to clone this repo and use it as a starting point for any Go project. The change that needs to be made it to update the module name in `go.mod`. | ||
# io | ||
Utilities for common use cases with the Go io package. |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/MatthewDolan/template-go | ||
module github.com/go-toolbelt/io | ||
|
||
go 1.18 |