Skip to content

chyroc/go-project-template

Repository files navigation

go-project-template

codecov go report card test status Apache-2.0 license Go.Dev reference Go project version

Install

go get github.com/chyroc/go-project-template

Usage

package main

import (
	"fmt"

	"github.com/chyroc/go-project-template"
)

func main() {
	res := go_project_template.Incr(1)
	fmt.Println(res) // output: 2
}