https://github.com/chyroc/go-project-template
go project template
https://github.com/chyroc/go-project-template
Last synced: 7 months ago
JSON representation
go project template
- Host: GitHub
- URL: https://github.com/chyroc/go-project-template
- Owner: chyroc
- License: apache-2.0
- Created: 2021-09-24T15:36:24.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-27T22:00:30.000Z (almost 3 years ago)
- Last Synced: 2025-04-13T04:38:27.338Z (9 months ago)
- Language: Go
- Size: 354 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-project-template
[](https://codecov.io/gh/chyroc/go-project-template)
[](https://goreportcard.com/report/github.com/chyroc/go-project-template)
[](https://github.com/chyroc/go-project-template/actions)
[](https://opensource.org/licenses/Apache-2.0)
[](https://pkg.go.dev/github.com/chyroc/go-project-template)
[](https://badge.fury.io/go/github.com%2Fchyroc%2Fgo-project-template)

## Install
```shell
go get github.com/chyroc/go-project-template
```
## Usage
```go
package main
import (
"fmt"
"github.com/chyroc/go-project-template"
)
func main() {
res := go_project_template.Incr(1)
fmt.Println(res) // output: 2
}
```