https://github.com/foresthoffman/common
A Go package full of helpful DRY logic common to most Go services. ⚙️🔨
https://github.com/foresthoffman/common
go golang
Last synced: over 1 year ago
JSON representation
A Go package full of helpful DRY logic common to most Go services. ⚙️🔨
- Host: GitHub
- URL: https://github.com/foresthoffman/common
- Owner: foresthoffman
- License: mit
- Created: 2021-06-16T05:20:26.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-16T22:24:06.000Z (about 5 years ago)
- Last Synced: 2025-01-31T16:12:47.223Z (over 1 year ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ⚙️ Common ⚙️





`common` provides helpful DRY logic common to most Go services.
### Installation
Run `go get -u github.com/foresthoffman/common`
If you're using `go mod`, run `go mod vendor` afterwards.
### Importing
Import this package by including `github.com/foresthoffman/common` in your import block.
e.g.
```go
package main
import(
...
"github.com/foresthoffman/common"
)
```
### Testing
Run `go test -v -count=1 ./...` in the project root directory. Use the `-count=1` to force the tests to run un-cached.
_That's all, enjoy!_