Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joubertredrat/enum-golang
poc using struct and enum in golang
https://github.com/joubertredrat/enum-golang
Last synced: 18 days ago
JSON representation
poc using struct and enum in golang
- Host: GitHub
- URL: https://github.com/joubertredrat/enum-golang
- Owner: joubertredrat
- License: mit
- Created: 2020-09-16T19:28:32.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-21T13:31:44.000Z (about 4 years ago)
- Last Synced: 2023-03-16T12:21:54.997Z (over 1 year ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# enum-golang
poc using struct and enum in golang#### Run
```bash
go run cmd/main.go
```#### Tests
```bash
go test -v ./...
```#### Coverage
```bash
go test -v ./... -coverprofile=coverage.out
go tool cover -func=coverage.out
```