From 7bd968edda14864e0ff12b959c583daef3afe9fd Mon Sep 17 00:00:00 2001 From: Matthew Dolan Date: Thu, 9 Jun 2022 15:56:54 +0000 Subject: [PATCH] Update README.md & go.mod --- README.md | 10 ++-------- go.mod | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 92f9a5e..126ad70 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/go.mod b/go.mod index a396f85..15745eb 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/MatthewDolan/template-go +module github.com/go-toolbelt/io go 1.18