mirror of
https://github.com/go-micro/go-micro.git
synced 2025-05-19 21:23:04 +02:00
7 lines
182 B
Go
7 lines
182 B
Go
package template
|
|
|
|
// GitIgnore is the .gitignore template used for new projects.
|
|
var GitIgnore = `# don't commit the service binary to vcs
|
|
{{.Service}}{{if .Client}}-client{{end}}
|
|
`
|